...
|
...
|
@@ -2,6 +2,7 @@ package com.sunyo.wlpt.base.model; |
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class NMMS_CUSTOM_TRANS {
|
...
|
...
|
@@ -19,7 +20,7 @@ public class NMMS_CUSTOM_TRANS { |
|
|
|
|
|
private String turnpiece;
|
|
|
|
|
|
private Long turnweight;
|
|
|
private BigDecimal turnweight;
|
|
|
|
|
|
private String customcode;
|
|
|
|
...
|
...
|
@@ -101,11 +102,11 @@ public class NMMS_CUSTOM_TRANS { |
|
|
this.turnpiece = turnpiece == null ? null : turnpiece.trim();
|
|
|
}
|
|
|
|
|
|
public Long getTurnweight() {
|
|
|
public BigDecimal getTurnweight() {
|
|
|
return turnweight;
|
|
|
}
|
|
|
|
|
|
public void setTurnweight(Long turnweight) {
|
|
|
public void setTurnweight(BigDecimal turnweight) {
|
|
|
this.turnweight = turnweight;
|
|
|
}
|
|
|
|
...
|
...
|
|