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