package com.ld.igds.inout.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.ld.igds.data.BaseParam;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.util.Date;
|
|
/**
|
* 出入库的页面参数定义
|
*
|
* @author jiazx
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class InoutParam extends BaseParam {
|
|
public String plateNum;// 车牌号
|
|
private String intelCard;// 智慧卡号
|
|
private String id;// 流水号
|
|
private String progress;// 当前所在流程
|
|
private String type;// 业务数据类型,出库或者入库
|
|
private String checkId;// 化验单号
|
|
@PropertyDef(label = "品种")
|
private String foodVariety;
|
|
@PropertyDef(label = "类型")
|
private String foodType;
|
|
private String checkStatus;
|
|
private String customerName;
|
|
private String customerId;
|
|
private String recordStatus;
|
|
private String msg;
|
|
private String userId;//登陆人ID
|
|
private double curStorage = 0.0;//当前库存获取损溢的库存
|
|
private String year; // 年份
|
|
private String deptId;// 所属分库
|
|
private String orderTag = "DESC";
|
|
private double weight;//重量信息
|
|
private Double de;
|
|
private Double fullWeight;
|
|
private String fullWeightUser;
|
|
private Date fullWeightTime;
|
|
private Double emptyWeight;
|
|
private Date emptyWeightTime;
|
|
private Date completeTime;
|
|
private String emptyWeightUser;
|
|
private Double netWeight;
|
|
private Double settleWeight;
|
private Double recordWeight;
|
|
//是否结算
|
private String settleTag;
|
|
private Double price;
|
|
private Double settleMoney;
|
|
private Date updateTime = new Date();
|
}
|