package com.fzzy.igds.data;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.util.Date;
|
|
/**
|
* @Description 出入库的页面参数定义
|
* @Author CZT
|
* @Date 2025/11/29 16:33
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class InoutParam extends IgdsBaseParam {
|
|
public String plateNum;
|
|
private String id;
|
|
private String progress;
|
|
private String weightTag;
|
|
private String type;
|
|
private String foodVariety;
|
|
private String foodType;
|
|
private String checkStatus;
|
|
private String customerName;
|
|
private String recordStatus;
|
|
private String userId;
|
|
private String year;
|
|
private double weight;//重量信息
|
|
private Double deOther;
|
|
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 Double price;
|
|
private String settleBizType;
|
|
private String settleTag;
|
|
private Double settleMoney;
|
|
private Date updateTime = new Date();
|
}
|