| | |
| | | // 物料名称 |
| | | private String maknx; |
| | | |
| | | // 库位规格 |
| | | private String batch; |
| | | |
| | | private String specs; |
| | | |
| | | private String model; |
| | | |
| | | private String manuDate; |
| | | |
| | | private double weight; |
| | | |
| | | private double length; |
| | | |
| | | private double volume; |
| | | |
| | | // 客户信息 |
| | | private String manu; |
| | | |
| | | // 备注 |
| | | private String memo; |
| | | |
| | | // 物料数量 |
| | | private Double count; |
| | | |
| | | // 库位数量 |
| | | private Double total; |
| | | |
| | | public MatDto() { |
| | | } |
| | | public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) { |
| | | this.matnr = matnr; |
| | | this.maknx = maknx; |
| | | this.batch = batch; |
| | | this.specs = specs; |
| | | this.manu = manu; |
| | | this.memo = memo; |
| | | this.count = count; |
| | | this.total = total; |
| | | } |
| | | public MatDto(String matnr,String batch,String specs,String manuDate,String model,double weight, double length,double volume) { |
| | | this.matnr = matnr; |
| | | this.batch = batch; |
| | | this.specs = specs; |
| | | this.manuDate = manuDate; |
| | | this.model = model; |
| | | this.weight = weight; |
| | | this.length = length; |
| | | this.volume = volume; |
| | | } |
| | | |
| | | public MatDto(String matNo, String maknx, Double count) { |
| | | this.matnr = matNo; |