WMS相关文件添加,仅添加文件,可启动但未测试
This commit is contained in:
59
ZR.Service/mes/wms/IService/IDeliveryService.cs
Normal file
59
ZR.Service/mes/wms/IService/IDeliveryService.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using ZR.Model.MES.wms;
|
||||
using ZR.Model.MES.wms.POJO.DTO;
|
||||
using ZR.Model.MES.wms.POJO.query;
|
||||
|
||||
namespace ZR.Service.mes.wms.IService
|
||||
{
|
||||
public interface IDeliveryService
|
||||
{
|
||||
|
||||
/**
|
||||
* 查询发货记录
|
||||
*
|
||||
* @param id 发货记录主键
|
||||
* @return 发货记录
|
||||
*/
|
||||
public WmsDelivery SelectById(long id);
|
||||
|
||||
/**
|
||||
* 查询发货记录列表
|
||||
*
|
||||
* @param query 查询条件
|
||||
* @param page 分页条件
|
||||
* @return 发货记录
|
||||
*/
|
||||
public List<WmsDelivery> SelectList(DeliveryQuery query, Pageable page);
|
||||
|
||||
/**
|
||||
* 新增发货记录
|
||||
*
|
||||
* @param WmsDelivery 发货记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int Insert(WmsDelivery WmsDelivery);
|
||||
|
||||
/**
|
||||
* 修改发货记录
|
||||
*
|
||||
* @param WmsDelivery 发货记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int Update(WmsDelivery WmsDelivery);
|
||||
|
||||
/**
|
||||
* 批量删除发货记录
|
||||
*
|
||||
* @param ids 需要删除的发货记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int DeleteByIds(long[] ids);
|
||||
|
||||
/**
|
||||
* 删除发货记录信息
|
||||
*
|
||||
* @param id 发货记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int DeleteById(long id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user