...
|
...
|
@@ -2,6 +2,7 @@ package com.sunyo.wlpt.base.model; |
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
...
|
...
|
@@ -25,7 +26,7 @@ public class NMMS_CUSTOM_MT4201 { |
|
|
|
|
|
private Integer lodingpiece;
|
|
|
|
|
|
private Long lodingweight;
|
|
|
private BigDecimal lodingweight;
|
|
|
|
|
|
private String customcode;
|
|
|
|
...
|
...
|
@@ -129,11 +130,11 @@ public class NMMS_CUSTOM_MT4201 { |
|
|
this.lodingpiece = lodingpiece;
|
|
|
}
|
|
|
|
|
|
public Long getLodingweight() {
|
|
|
public BigDecimal getLodingweight() {
|
|
|
return lodingweight;
|
|
|
}
|
|
|
|
|
|
public void setLodingweight(Long lodingweight) {
|
|
|
public void setLodingweight(BigDecimal lodingweight) {
|
|
|
this.lodingweight = lodingweight;
|
|
|
}
|
|
|
|
...
|
...
|
|