Browse Source

Merge remote-tracking branch 'TSIT/gagamel_onetoone' into style

card007 4 năm trước cách đây
mục cha
commit
94cafd4d9f
1 tập tin đã thay đổi với 27 bổ sung0 xóa
  1. 27 0
      src/main/java/com/style24/persistence/domain/Counsel.java

+ 27 - 0
src/main/java/com/style24/persistence/domain/Counsel.java

@@ -1,5 +1,6 @@
 package com.style24.persistence.domain;
 
+import com.fasterxml.jackson.annotation.JsonFormat;
 import com.style24.core.support.session.TscSession;
 import com.style24.core.support.util.CryptoUtils;
 import com.style24.core.support.util.MaskingUtils;
@@ -117,4 +118,30 @@ public class Counsel extends TscBaseDomain {
 	private int pageSize = 50;
 	private int pageUnit = 10;
 
+	private String file1OrgFileNm;	// 원본파일명1(등록시 사용)
+	private String file1SysFileNm;	// 시스템파일명1(등록시 사용)
+	private String file2OrgFileNm;	// 원본파일명2(등록시 사용)
+	private String file2SysFileNm;	// 시스템파일명2(등록시 사용)
+	private int selfGb;				// 내문의 1: , 그외 0
+	private String sysFileNm;		// 이미지 공통 변수
+	private int rnum;
+
+	private String goodsType; 		// 상품타입
+
+	// 1:1문의(총, 답변완료, 처리중) 건수
+	private int totCnt;		// 총건수
+	private int ansCnt;		// 답변완료건수
+	private int ingCnt;		// 처리중건수
+
+	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
+	private String[] orgFileNmArr;
+	@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
+	private String[] sysFileNmArr;
+
+	private Integer assignerNo;		// 할당자번호
+	private String assignerNm;		// 할당자명
+	private String assignedDt;		// 할당일시
+
+	private int cnt;
+
 }