|
@@ -8,6 +8,7 @@ import java.util.Date;
|
|
|
* Created by liuzhiwei on 2017/10/31.
|
|
|
*/
|
|
|
public class SalesOrderItem implements Serializable {
|
|
|
+ private static final long serialVersionUID = 4585046295579749067L;
|
|
|
|
|
|
private Integer itemId;
|
|
|
private Integer itemOrderId;
|
|
@@ -24,6 +25,9 @@ public class SalesOrderItem implements Serializable {
|
|
|
private Date itemCreateTime;
|
|
|
private Integer itemIsSource;
|
|
|
|
|
|
+ private String productAbbreviation;
|
|
|
+ private String colorAbbreviation;
|
|
|
+
|
|
|
public Integer getItemIsSource() {
|
|
|
return itemIsSource;
|
|
|
}
|
|
@@ -135,4 +139,20 @@ public class SalesOrderItem implements Serializable {
|
|
|
public void setItemCreateTime(Date itemCreateTime) {
|
|
|
this.itemCreateTime = itemCreateTime;
|
|
|
}
|
|
|
+
|
|
|
+ public String getProductAbbreviation() {
|
|
|
+ return productAbbreviation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductAbbreviation(String productAbbreviation) {
|
|
|
+ this.productAbbreviation = productAbbreviation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getColorAbbreviation() {
|
|
|
+ return colorAbbreviation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColorAbbreviation(String colorAbbreviation) {
|
|
|
+ this.colorAbbreviation = colorAbbreviation;
|
|
|
+ }
|
|
|
}
|