|
|
@@ -1,7 +1,10 @@
|
|
|
package com.style24.persistence.domain;
|
|
|
|
|
|
+import com.style24.core.support.session.TscSession;
|
|
|
+import com.style24.core.support.util.MaskingUtils;
|
|
|
import com.style24.persistence.TscBaseDomain;
|
|
|
|
|
|
+import com.style24.persistence.TscPageRequest;
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
|
@@ -66,4 +69,16 @@ public class GiftCard extends TscBaseDomain {
|
|
|
private String cashReceiptsGb; // 현금영수증 구분 (상품권 : giftCard, 결제 : payment)
|
|
|
|
|
|
private Integer gfcdBulkRegSq; // 대량등록일련번호
|
|
|
+ private String custId;
|
|
|
+ private String stDate;
|
|
|
+ private String edDate;
|
|
|
+
|
|
|
+ private TscPageRequest pageable;
|
|
|
+ private int pageNo = 1;
|
|
|
+ private int pageSize = 50;
|
|
|
+ private int pageUnit = 10;
|
|
|
+
|
|
|
+ public String getMaskingCustId() {
|
|
|
+ return TscSession.getAttribute("maskingYn").equals("Y") ? MaskingUtils.id(this.custId) : this.custId;
|
|
|
+ }
|
|
|
}
|