Procházet zdrojové kódy

금액정보 유효성체크 추가

tsit14 před 5 roky
rodič
revize
3a1e8bc452

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

@@ -675,4 +675,17 @@ public class Order extends TscBaseDomain {
 	private int pointUseOrdMinAmt;		// 포인트사용기준
 	private int pointUseMaxLimit;		// 최대사용가능포인트율
 	private String custPayMeans;		// 결제타입설정
+	
+	// 2021.05.11 금액정보 체크
+	private int orgGoodsSumAmt;
+	private int cpn1DcSumAmt;
+	private int tmtb1DcSumAmt;
+	private int tmtb2DcSumAmt;
+	private int goodsCpnDcSumAmt;
+	private int cartCpnDcSumAmt;
+	private int prePntDcSumAmt;
+	private int pntDcSumAmt;
+	private int gfcdUseSumAmt;
+	private int realOrdSumAmt;
+	
 }