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