WMS相关文件添加,仅添加文件,可启动但未测试
This commit is contained in:
58
ZR.Service/mes/wms/IService/ICarrierService.cs
Normal file
58
ZR.Service/mes/wms/IService/ICarrierService.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user