ソースを参照

샵링커수정

jmh 4 年 前
コミット
7f8977e399
1 ファイル変更6 行追加6 行削除
  1. 6 6
      src/main/java/com/style24/persistence/domain/Goods.java

+ 6 - 6
src/main/java/com/style24/persistence/domain/Goods.java

@@ -146,9 +146,9 @@ public class Goods extends TscBaseDomain {
 
 	private int goodsSq;
 	private String sizeGb;
-	private String colorCd;
-	private String frontGb;
-	private Integer custNo;
+	private String shoplinkerColorCd;		// 샵링커용
+	private String shoplinkerFrontGb;		// 샵링커용
+	private Integer shoplinkerCustNo;		// 샵링커용
 
 	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
 	private String[] arrGoodsCd;
@@ -174,10 +174,10 @@ public class Goods extends TscBaseDomain {
 
 	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
 	private String[] currStockQty; // wms가용재고
-	
+
 	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
 	private String[] storeStockQty; // 매장가용재고
-	
+
 	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
 	private String[] storeMaxQty; // wms, 매장 재고중 최대값
 
@@ -209,5 +209,5 @@ public class Goods extends TscBaseDomain {
 	private int pageNo = 1;
 	private int pageSize = 50;
 	private int pageUnit = 10;
-	
+
 }