WMS相关文件添加,仅添加文件,可启动但未测试

This commit is contained in:
赵正易
2024-03-08 08:28:14 +08:00
parent a0ae0c35b0
commit b400063e1a
83 changed files with 3767 additions and 1 deletions

View 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);
}
}