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