作者 xudada

增加user对象

@@ -62,6 +62,8 @@ public class NMMS_CUSTOM_MT1201 { @@ -62,6 +62,8 @@ public class NMMS_CUSTOM_MT1201 {
62 62
63 private AWB_AWBINFO awbinfo; 63 private AWB_AWBINFO awbinfo;
64 64
  65 + private NMMS_CUSTOM_USER user;
  66 +
65 private List<NMMS_CUSTOM_MT1201> children; 67 private List<NMMS_CUSTOM_MT1201> children;
66 68
67 69
@@ -63,6 +63,8 @@ public class NMMS_CUSTOM_MT520X { @@ -63,6 +63,8 @@ public class NMMS_CUSTOM_MT520X {
63 63
64 private AWB_AWBINFO awbinfo; 64 private AWB_AWBINFO awbinfo;
65 65
  66 + private NMMS_CUSTOM_USER user;
  67 +
66 private List<NMMS_CUSTOM_MT520X> children; 68 private List<NMMS_CUSTOM_MT520X> children;
67 69
68 public String getUuid() { 70 public String getUuid() {
@@ -137,11 +139,11 @@ public class NMMS_CUSTOM_MT520X { @@ -137,11 +139,11 @@ public class NMMS_CUSTOM_MT520X {
137 this.piece = piece; 139 this.piece = piece;
138 } 140 }
139 141
140 - public Long getWeight() { 142 + public BigDecimal getWeight() {
141 return weight; 143 return weight;
142 } 144 }
143 145
144 - public void setWeight(Long weight) { 146 + public void setWeight(BigDecimal weight) {
145 this.weight = weight; 147 this.weight = weight;
146 } 148 }
147 149
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class NMMS_CUSTOM_USER {
  4 + public String getUsername() {
  5 + return username;
  6 + }
  7 +
  8 + public void setUsername(String username) {
  9 + this.username = username;
  10 + }
  11 +
  12 + private String username;
  13 +}