59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
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);
|
|
}
|
|
}
|