package com.ld.igds.inout.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 出入库船运信息及子表信息
|
*
|
* @author chen
|
*
|
*/
|
@Data
|
public class ReportInoutShipData implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "序号")
|
private String index;
|
|
@PropertyDef(label = "流水号")
|
private String id;
|
|
@PropertyDef(label = "船运号")
|
private String plateNum;
|
|
@PropertyDef(label = "往来单位ID", description = "入库时,表示发货单位,出库时候表示收货单位")
|
private String customerId;
|
|
@PropertyDef(label = "往来单位", description = "入库时,表示发货单位,出库时候表示收货单位")
|
private String customerName;
|
|
@PropertyDef(label = "粮食品种")
|
private String foodVariety;
|
|
@PropertyDef(label = "船运车辆序号")
|
private String carNum;
|
|
@PropertyDef(label = "船运车辆名称")
|
private String carName;
|
|
@PropertyDef(label = "装卸仓库")
|
private String depotId;
|
|
@PropertyDef(label = "出入库类型", description = "出库,入库")
|
private String type;
|
|
@PropertyDef(label = "流程进度")
|
private String progress;
|
|
@PropertyDef(label = "毛重", description = "单位KG")
|
private Double fullWeight = 0.0;
|
|
@PropertyDef(label = "皮重", description = "单位KG")
|
private Double emptyWeight = 0.0;
|
|
@PropertyDef(label = "净重", description = "单位KG")
|
private Double netWeight = 0.0;
|
|
@PropertyDef(label = "总扣重", description = "单位KG")
|
private Double deSum = 0.0;
|
|
@PropertyDef(label = "结算净重", description = "单位KG")
|
private Double settleWeight = 0.0;
|
|
@PropertyDef(label = "完成时间")
|
private Date completeTime;
|
}
|