选煤厂生产管理平台后台代码
dongyukun
2024-12-10 b643c158bc05f2a7f95bb9fed15a1451691eaef4
提交 | 用户 | 时间
532d0b 1 package com.iailab.module.pms.production.wash.service;
D 2
3 import com.iailab.framework.common.pojo.PageResult;
4 import com.iailab.module.pms.production.wash.vo.WashPlanPageReqVO;
5 import com.iailab.module.pms.production.wash.entity.WashPlanEntity;
6
7 /**
8  * @author DongYukun
9  * @Description
10  * @createTime 2024年12月03日
11  */
12 public interface WashPlanService {
13
14     String create(WashPlanEntity createEntity);
15
16     String update(WashPlanEntity createEntity);
17
18     void delete(String id);
19
20     WashPlanEntity getInfo(String id);
21
22     PageResult<WashPlanEntity> getPage(WashPlanPageReqVO PageReqVO);
23 }