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