选煤厂生产管理平台后台代码
dongyukun
2024-12-10 532d0b7f83815ebeb4be9aa1f7a6683ede831b6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
}