Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/wms/POJO/query/SupplierTransactionQuery.cs

36 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.MES.wms.POJO.query
{
public class SupplierTransactionQuery
{
// @ApiModelProperty("交易编号 精确匹配")
private String transactionCode;
// @ApiModelProperty("供应商编号 精确匹配")
private String supplierId;
// @ApiModelProperty("交易类型 1结款 2应付 精确匹配")
private String transactionType;
// @ApiModelProperty("交易金额 精确匹配")
private decimal transactionAmount;
// @ApiModelProperty("上期余额 精确匹配")
private decimal previousBalance;
// @ApiModelProperty("当前余额 精确匹配")
private decimal currentBalance;
// @ApiModelProperty("入库单号 精确匹配")
private long receiptOrderId;
// @ApiModelProperty("开始时间 精确匹配")
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private DateTime? startTime;
// @ApiModelProperty("结束时间 精确匹配")
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private DateTime? endTime;
}
}