package com.iailab.module.pms.production.work.service;
|
|
import com.iailab.framework.common.pojo.PageResult;
|
import com.iailab.module.pms.production.work.enity.DutyInfoEntity;
|
import com.iailab.module.pms.production.work.vo.DutyInfoPageReqVO;
|
|
/**
|
* 当班信息
|
*
|
*
|
* @author DongYuKun
|
* @Description
|
* @createTime 2023年04月27日 14:58:00
|
*/
|
public interface DutyInfoService {
|
|
String create(DutyInfoEntity createEntity);
|
|
String update(DutyInfoEntity createEntity);
|
|
void delete(String id);
|
|
DutyInfoEntity getInfo(String id);
|
|
PageResult<DutyInfoEntity> getPage(DutyInfoPageReqVO PageReqVO);
|
}
|