Ver Fonte

이태영 - 20210129 장바구니 수정 중

xodud1202 há 5 anos atrás
pai
commit
d3d632938b
1 ficheiros alterados com 8 adições e 0 exclusões
  1. 8 0
      src/main/java/com/style24/persistence/domain/Order.java

+ 8 - 0
src/main/java/com/style24/persistence/domain/Order.java

@@ -382,4 +382,12 @@ public class Order extends TscBaseDomain {
 	private int exchangeOrdDtlItemSq;
 	private String wdGb;
 	private int addPayCost;
+
+	// 장바구니
+	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
+	private int[] cartSqArr;		// 장바구니 일련번호 배열
+	private int cartSq;				// 장바구니 일련번호
+	private int pcCurrPrice;		// PC 즉시할인 적용가
+	private String jsessionId;		// SessionId
+
 }