package com.ld.igds.inout.dto;
|
|
import com.ld.igds.data.BaseParam;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.util.Date;
|
|
/**
|
* 出入库流水字表
|
* @author
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper=false)
|
public class InoutRecordItemParam extends BaseParam {
|
|
private String id;
|
|
private String recordId;
|
|
private String depotId;
|
|
private String carNum;
|
private String carName;
|
private String type;
|
|
private String progress ;
|
|
private Double de = 0.0;
|
|
private Double fullWeight = 0.0;
|
|
private String fullWeightUser;
|
|
private Date fullWeightTime;
|
|
private Double emptyWeight = 0.0;
|
|
private Date emptyWeightTime;
|
|
private String emptyWeightUser;
|
|
private Double netWeight = 0.0;
|
|
private Double settleWeight = 0.0;
|
|
private String remarks;
|
|
private String foodVariety;
|
|
private String customerId;
|
|
private String customerName;
|
|
private String plateNum;
|
|
private String transType;
|
|
private Date start;
|
private Date end;
|
}
|