|
|
@@ -17,7 +17,7 @@ import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 批量上传商品建立临时表存储相关信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @author hejq
|
|
|
* @time 创建时间:2016年9月24日
|
|
|
*/
|
|
|
@@ -54,16 +54,28 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
@Column(name = "rel_branden")
|
|
|
private String brandNameEn;
|
|
|
|
|
|
+ /**
|
|
|
+ * 商城品牌中文
|
|
|
+ */
|
|
|
+ @Column(name = "rel_b2cbrandcn")
|
|
|
+ private String b2cBrandcn;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌品牌uuid
|
|
|
+ */
|
|
|
+ @Column(name = "rel_b2cbranden")
|
|
|
+ private String b2cBranden;
|
|
|
+
|
|
|
/**
|
|
|
* 品牌id
|
|
|
*/
|
|
|
- @Column(name = "rel_brandid")
|
|
|
+ @Column(name = "rel_b2cbrandid")
|
|
|
private Long brandId;
|
|
|
|
|
|
/**
|
|
|
* 品牌品牌uuid
|
|
|
*/
|
|
|
- @Column(name = "br_name_uuid")
|
|
|
+ @Column(name = "rel_b2cbranduuid")
|
|
|
private String branduuid;
|
|
|
|
|
|
/**
|
|
|
@@ -72,10 +84,16 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
@Column(name = "rel_code")
|
|
|
private String code;
|
|
|
|
|
|
+ /**
|
|
|
+ * 产品型号
|
|
|
+ */
|
|
|
+ @Column(name = "rel_b2ccode")
|
|
|
+ private String b2cCode;
|
|
|
+
|
|
|
/**
|
|
|
* 产品UUId
|
|
|
*/
|
|
|
- @Column(name = "rel_uuid")
|
|
|
+ @Column(name = "rel_b2cuuid")
|
|
|
private String componentUuId;
|
|
|
|
|
|
/**
|
|
|
@@ -298,7 +316,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
|
|
|
/**
|
|
|
* 发布状态
|
|
|
- *
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@Column(name = "rel_releasestatus")
|
|
|
@@ -337,13 +355,13 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
/**
|
|
|
* 类目名称,便于发布
|
|
|
*/
|
|
|
- @Column(name = "rel_kindname")
|
|
|
+ @Column(name = "rel_b2ckindname")
|
|
|
private String kindName;
|
|
|
|
|
|
/**
|
|
|
* 类目ID
|
|
|
*/
|
|
|
- @Column(name = "rel_kind_uuid")
|
|
|
+ @Column(name = "rel_b2ckindid")
|
|
|
private Long kindUuid;
|
|
|
|
|
|
/**
|
|
|
@@ -809,7 +827,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
|
|
|
/**
|
|
|
* 价格分段数据
|
|
|
- *
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@Transient
|
|
|
@@ -957,7 +975,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
|
|
|
/**
|
|
|
* 获取人民币分段报价列表
|
|
|
- *
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@Transient
|
|
|
@@ -980,7 +998,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
|
|
|
/**
|
|
|
* 获取美元分段报价列表
|
|
|
- *
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@Transient
|
|
|
@@ -1036,6 +1054,33 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
return goods;
|
|
|
}
|
|
|
|
|
|
+ public String getB2cBrandcn() {
|
|
|
+ return b2cBrandcn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ReleaseProductByBatch setB2cBrandcn(String b2cBrandcn) {
|
|
|
+ this.b2cBrandcn = b2cBrandcn;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getB2cBranden() {
|
|
|
+ return b2cBranden;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ReleaseProductByBatch setB2cBranden(String b2cBranden) {
|
|
|
+ this.b2cBranden = b2cBranden;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getB2cCode() {
|
|
|
+ return b2cCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ReleaseProductByBatch setB2cCode(String b2cCode) {
|
|
|
+ this.b2cCode = b2cCode;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
public String getStoreid() {
|
|
|
return storeid;
|
|
|
}
|