package com.iailab.module.pms.production.wash.service;
|
|
import com.iailab.framework.common.pojo.PageResult;
|
import com.iailab.module.pms.production.wash.vo.WashPlanDetPageReqVO;
|
import com.iailab.module.pms.production.wash.entity.WashPlanDetEntity;
|
|
/**
|
* @author DongYukun
|
* @Description
|
* @createTime 2024年12月03日
|
*/
|
public interface WashPlanDetService {
|
|
String create(WashPlanDetEntity createEntity);
|
|
String update(WashPlanDetEntity createEntity);
|
|
void delete(String id);
|
|
WashPlanDetEntity getInfo(String id);
|
|
PageResult<WashPlanDetEntity> getPage(WashPlanDetPageReqVO PageReqVO);
|
}
|