Browse Source

1:器件商品的视图增加了是否拆卖的字段。

yujia 8 years ago
parent
commit
799d7d7fc6

+ 15 - 0
src/main/java/com/uas/platform/b2c/prod/product/component/modal/ComponentGoods.java

@@ -64,6 +64,12 @@ public class ComponentGoods implements Serializable {
 	@Column(name = "cmp_uuid")
 	@Column(name = "cmp_uuid")
 	private String uuid;
 	private String uuid;
 
 
+	/**
+	 * 是否拆卖
+	 */
+	@Column(name = "go_isbreakup")
+	private Boolean breakUp;
+
 	/**
 	/**
 	 * 批次号
 	 * 批次号
 	 */
 	 */
@@ -654,4 +660,13 @@ public class ComponentGoods implements Serializable {
 		this.b2cDeliveryDemMaxTime = b2cDeliveryDemMaxTime;
 		this.b2cDeliveryDemMaxTime = b2cDeliveryDemMaxTime;
 		return this;
 		return this;
 	}
 	}
+
+	public Boolean getBreakUp() {
+		return breakUp;
+	}
+
+	public ComponentGoods setBreakUp(Boolean breakUp) {
+		this.breakUp = breakUp;
+		return this;
+	}
 }
 }