|
|
@@ -1,5 +1,6 @@
|
|
|
package com.style24.persistence.domain;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
import com.style24.core.support.util.MaskingUtils;
|
|
|
import com.style24.persistence.TscBaseDomain;
|
|
|
@@ -66,6 +67,11 @@ public class Counsel extends TscBaseDomain {
|
|
|
return (this.custId != null) ? MaskingUtils.id(this.custId) : this.custId;
|
|
|
}
|
|
|
|
|
|
+ @JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
|
|
|
+ private String[] fileOrgFileNm;
|
|
|
+ @JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
|
|
|
+ private String[] fileSysFileNm;
|
|
|
+
|
|
|
|
|
|
// Pagination
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|