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,58 @@
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 ICarrierService
{
/**
* 查询承运商
*
* @param id 承运商主键
* @return 承运商
*/
public WmsCarrier SelectById(long id);
/**
* 查询承运商列表
*
* @param query 查询条件
* @param page 分页条件
* @return 承运商
*/
public List<WmsCarrier> SelectList(CarrierQuery query, Pageable page);
/**
* 新增承运商
*
* @param carrier 承运商
* @return 结果
*/
public int Insert(WmsCarrier carrier);
/**
* 修改承运商
*
* @param carrier 承运商
* @return 结果
*/
public int Update(WmsCarrier carrier);
/**
* 批量删除承运商
*
* @param ids 需要删除的承运商主键
* @return 结果
*/
public int DeleteByIds(long[] ids);
/**
* 删除承运商信息
*
* @param id 承运商主键
* @return 结果
*/
public int DeleteById(long id);
}
}