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

40 lines
1.2 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 InventoryCheckQuery
{
// @ApiModelProperty("库存盘点单号,系统自动生成 精确匹配")
private String inventoryCheckNo;
// @ApiModelProperty("库存盘点类型 精确匹配")
private int inventoryCheckType;
// @ApiModelProperty("库存盘点单状态11盘点中 22已完成 精确匹配")
private int inventoryCheckStatus;
// @ApiModelProperty("盈亏数 精确匹配")
private decimal inventoryCheckTotal;
// @ApiModelProperty("审核状态 精确匹配")
private int checkStatus;
// @ApiModelProperty("审核人 精确匹配")
private long checkUserId;
// @ApiModelProperty("审核时间 精确匹配")
private DateTime? checkTime;
// @ApiModelProperty("所属仓库 精确匹配")
private long warehouseId;
// @ApiModelProperty("所属库区 精确匹配")
private long areaId;
// @ApiModelProperty("货架 精确匹配")
private long rackId;
// @ApiModelProperty("附件文件 精确匹配")
private String attachment;
}
}