2021-01-07 11:34:56 +07:00

19 lines
539 B
Java

package com.jasamedika.medifirst2000.service;
import java.util.Map;
import com.jasamedika.medifirst2000.entities.TimeOutControl;
import com.jasamedika.medifirst2000.vo.TimeOutControlVO;
public interface TimeOutControlService extends BaseVoService<TimeOutControl, TimeOutControlVO, String> {
Map<String, Object> saveTimeOutControl(TimeOutControlVO vo);
Map<String, Object> updateTimeOutControl(TimeOutControlVO vo);
Map<String, Object> findByNoRec(String noRec);
Map<String, Object> getTimeOutByNoRecAntrian(String noRec);
}