|
@@ -0,0 +1,118 @@
|
|
|
+package com.iamberry.rst.core.approval;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by Administrator on 2018/9/29.
|
|
|
+ */
|
|
|
+public class ApprovalApplyPickItem implements Serializable{
|
|
|
+ private static final long serialVersionUID = -3566469572724340861L;
|
|
|
+ private Integer applyitemid;//
|
|
|
+ private Integer applyPickId;//提货id
|
|
|
+ private Integer productId;//产品id
|
|
|
+ private String itemProductName;//产品名称
|
|
|
+ private String itemColorName;//颜色名称
|
|
|
+ private Integer itemProductNum;//产品数量
|
|
|
+ private String itemBrandName;//品牌名称
|
|
|
+ private String itemProductModel;//产品型号
|
|
|
+ private String itemProductUnit;//单位
|
|
|
+ private Integer itemProductBoxNumber;//箱数/套数
|
|
|
+ private Integer itemCreateTime;//
|
|
|
+ private Integer itemUpdateTime;//
|
|
|
+
|
|
|
+ public Integer getApplyitemid() {
|
|
|
+ return applyitemid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApplyitemid(Integer applyitemid) {
|
|
|
+ this.applyitemid = applyitemid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getApplyPickId() {
|
|
|
+ return applyPickId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApplyPickId(Integer applyPickId) {
|
|
|
+ this.applyPickId = applyPickId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getProductId() {
|
|
|
+ return productId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductId(Integer productId) {
|
|
|
+ this.productId = productId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemProductName() {
|
|
|
+ return itemProductName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemProductName(String itemProductName) {
|
|
|
+ this.itemProductName = itemProductName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemColorName() {
|
|
|
+ return itemColorName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemColorName(String itemColorName) {
|
|
|
+ this.itemColorName = itemColorName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getItemProductNum() {
|
|
|
+ return itemProductNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemProductNum(Integer itemProductNum) {
|
|
|
+ this.itemProductNum = itemProductNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemBrandName() {
|
|
|
+ return itemBrandName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemBrandName(String itemBrandName) {
|
|
|
+ this.itemBrandName = itemBrandName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemProductModel() {
|
|
|
+ return itemProductModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemProductModel(String itemProductModel) {
|
|
|
+ this.itemProductModel = itemProductModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemProductUnit() {
|
|
|
+ return itemProductUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemProductUnit(String itemProductUnit) {
|
|
|
+ this.itemProductUnit = itemProductUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getItemProductBoxNumber() {
|
|
|
+ return itemProductBoxNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemProductBoxNumber(Integer itemProductBoxNumber) {
|
|
|
+ this.itemProductBoxNumber = itemProductBoxNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getItemCreateTime() {
|
|
|
+ return itemCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemCreateTime(Integer itemCreateTime) {
|
|
|
+ this.itemCreateTime = itemCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getItemUpdateTime() {
|
|
|
+ return itemUpdateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemUpdateTime(Integer itemUpdateTime) {
|
|
|
+ this.itemUpdateTime = itemUpdateTime;
|
|
|
+ }
|
|
|
+}
|