package com.ld.igds.m.dto;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.ld.igds.inout.InoutConstant;
|
|
import lombok.Data;
|
|
/**
|
* 化验单DTO 针对义乌重金属的数据导出
|
* @author andy.jia
|
*
|
*/
|
@Data
|
public class ReportInoutCheckData implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "流水号", description = "根据一定的规则生成")
|
private String id;
|
|
|
@PropertyDef(label = "部门ID", description = "用于区分部门")
|
private String deptId;
|
|
@PropertyDef(label = "装卸仓库")
|
private String depotId;
|
|
|
@PropertyDef(label = "承运人")
|
private String userName = "";
|
|
|
@PropertyDef(label = "车牌号")
|
private String plateNum;
|
|
|
@PropertyDef(label = "往来单位ID", description = "入库时,表示发货单位,出库时候表示收货单位")
|
private String customerId;
|
|
@PropertyDef(label = "往来单位", description = "入库时,表示发货单位,出库时候表示收货单位")
|
private String customerName;
|
|
// 粮食信息
|
@Column(name = "FOOD_VARIETY_", length = 20)
|
@PropertyDef(label = "粮食品种")
|
private String foodVariety;
|
|
@PropertyDef(label = "粮食等级")
|
private String foodLevel;
|
|
@PropertyDef(label = "粮食产地")
|
private String foodLocation;
|
|
@PropertyDef(label = "年份")
|
private String foodYear;
|
|
// 化验信息
|
@PropertyDef(label = "化验结果")
|
private String checkStatus = InoutConstant.STATUS_NONE;
|
|
@PropertyDef(label = "结算净重", description = "扣重后净重,结算净重,单位KG")
|
private Double settleWeight = 0.0;
|
|
// 出库
|
@PropertyDef(label = "完成时间")
|
private Date completeTime;
|
|
// 备注
|
@PropertyDef(label = "备注信息")
|
private String remarks;
|
|
|
//化验项目
|
private String standardId;
|
|
@PropertyDef(label = "化验项")
|
private String standardName;
|
|
@PropertyDef(label = "单位")
|
private String unit;
|
|
@PropertyDef(label = "标准上限")
|
private Double upperLimit;
|
|
@PropertyDef(label = "标准下限")
|
private Double lowerLimit;
|
|
@PropertyDef(label = "检测值")
|
private String value;
|
|
//化验项目
|
private String standardId2;
|
|
@PropertyDef(label = "化验项")
|
private String standardName2;
|
|
@PropertyDef(label = "单位")
|
private String unit2;
|
|
@PropertyDef(label = "标准上限")
|
private Double upperLimit2;
|
|
@PropertyDef(label = "标准下限")
|
private Double lowerLimit2;
|
|
@PropertyDef(label = "检测值")
|
private String value2;
|
|
}
|