리스트 넘버, 달력 디자인 수정

This commit is contained in:
kimre
2022-06-29 20:13:08 +09:00
parent 0a2e30b1c2
commit 490b7d65f0
17 changed files with 94 additions and 100 deletions

View File

@@ -9,8 +9,8 @@ import java.io.Serializable;
@Data
public class ChannelInfo implements Serializable {
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "가입일", name = "가입일", dataType = "String")
private String subsDt;
@ApiModelProperty(example = "유치업체", name = "유치업체", dataType = "String")

View File

@@ -1,17 +1,16 @@
package kr.co.uplus.ez.api.channelMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import kr.co.uplus.ez.api.servMgt.dto.RejectRecvInfo;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class TmpltInfo implements Serializable {
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "고객사명(이름)", name = "고객사명(이름)", dataType = "String")
private String custNm;
@ApiModelProperty(example = "사업자번호(생년월일)", name = "사업자번호(생년월일)", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.custMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class MemberDetail implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String")
private String userId;
@ApiModelProperty(example = "사용자 이름", name = "사용자 이름", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.custMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class MemberList implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "사용자 이름", name = "사용자 이름", dataType = "String")
private String userNm;
@ApiModelProperty(example = "사용자 구분", name = "사용자 구분", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.custMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class SubsList implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "서비스ID", name = "서비스ID", dataType = "String")
private String serviceId;
@ApiModelProperty(example = "고객사명", name = "고객사명", dataType = "String")

View File

@@ -9,8 +9,8 @@ import java.io.Serializable;
@Data
public class MsgIntrcpList implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "일련번호", name = "일련번호", dataType = "String")
private String seqNo;
@ApiModelProperty(example = "차단메시지", name = "차단메시지", dataType = "String")

View File

@@ -9,8 +9,8 @@ import java.io.Serializable;
@Data
public class SendNumIntrcpList implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "발신번호", name = "발신번호", dataType = "String")
private String blcksndrno;
@ApiModelProperty(example = "발송타입", name = "발송타입", dataType = "String")

View File

@@ -9,8 +9,8 @@ import java.io.Serializable;
@Data
public class WebIntrcpList implements Serializable {
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트 번호", name = "리스트 번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "차단구분", name = "차단구분", dataType = "String")
private String blckTpCd;
@ApiModelProperty(example = "발송ID", name = "발송ID", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.sendNumMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class ProfileInfo implements Serializable {
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "고객사명", name = "고객사명", dataType = "String")
private String custNm;
@ApiModelProperty(example = "사업자번호", name = "사업자번호", dataType = "String")

View File

@@ -9,8 +9,8 @@ import java.io.Serializable;
@Data
public class SendNumberInfo implements Serializable{
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "고객사명", name = "고객사명", notes = "고객사명( 개인: 이름)", dataType = "String")
private String custNm;
@ApiModelProperty(example = "관리자ID", name = "관리자ID", dataType = "String")

View File

@@ -1,15 +1,15 @@
package kr.co.uplus.ez.api.servMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class RejectRecvInfo implements Serializable{
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "고객사명(이름)", name = "고객사명(이름)", dataType = "String")
private String custNm;
@ApiModelProperty(example = "사업자번호(생년월일)", name = "사업자번호(생년월일)", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.sysMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class AdminInfo implements Serializable {
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "관리자/유치채널 권한", name = "관리자/유치채널 권한", dataType = "String")
private String auth;
@ApiModelProperty(example = "관리자/유치채널 이름(대리점명)", name = "관리자/유치채널 이름(대리점명)", dataType = "String")

View File

@@ -1,16 +1,16 @@
package kr.co.uplus.ez.api.sysMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@SuppressWarnings("serial")
@Data
public class AuthInfo implements Serializable {
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "String")
private String no;
@ApiModelProperty(example = "리스트번호", name = "리스트번호", dataType = "Integer")
private Integer no;
@ApiModelProperty(example = "권한 코드", name = "권한 코드", dataType = "String")
private String authCd;
@ApiModelProperty(example = "권한명", name = "권한명", dataType = "String")

View File

@@ -1,47 +1,48 @@
xssconfig :
#xss filter 제외 URL
exclude-urls :
- "/assets/**"
- "/se2/**"
- "/multiSendTemplateApi/insertMultiSendTemplate"
- "/projectApi/manage/saveProject"
#- "/uc/test/testUrl" #테스트 URL
#xss 제외 방식(allow, except)
#allow - escape-characters 를 모두 적용 후 allow-elements 만 <, > 치환
#except - escape-characters 를 적용하지 않고 except-elements 적용
escape-type: "allow"
#allow 일 경우 넘어온 파라미터를 치환작업할 문자,문자열
#unescapeYn "Y"일 경우 unescape 시 치환 역작업을 하고 "N"인 경우 제외한다.
#공백치환을 추천하지 않는다. <sc<script>ript=alert(1)> 특정문자가 공백치환될 경우 차단우회방지를 위해 필터코멘트 사용.
escape-characters :
- {target: "<", trans: "&lt;", unescapeYn: "Y"}
- {target: ">", trans: "&gt;", unescapeYn: "Y"}
- {target: "'", trans: "&#39;", unescapeYn: "Y"}
- {target: "\\(", trans: "&#40;", unescapeYn: "Y"}
- {target: "\\)", trans: "&#41;", unescapeYn: "Y"}
- {target: "(?i)javascript", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "(?i)iframe", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "&lt;\\/?(?i)script", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "(?i)eval\\((.*)\\)", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
#allow 일 경우 escape-characters 를 모두 적용 후 <, > 를 적용할 tag
allow-elements : "a, label, noscript, h1, h2, h3, h4, h5, h6,
p, i, b, u, strong, em, small, big, pre, code,
cite, samp, sub, sup, strike, center, blockquote,
hr, br, col, font, map, span, div, img,
ul, ol, li, dd, dt, dl, tbody, thead, tfoot,
table, td, th, tr, colgroup, fieldset, legend"
#except 일 경우 넘어온 파라미터를 치환작업할 문자,문자열
except-elements :
#공백치환을 추천하지 않는다. <sc<script>ript=alert(1)> 특정문자가 공백치환될 경우 차단우회방지를 위해 필터코멘트 사용.
- {target: "&#((?!;).)*?;", trans: "<!-- Not Allowed String Filtered -->"} #<IMG SRC="jav&#x0D;ascript:alert('XSS');"> 방지
- {target: "<\\/?(?i)svg(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "<\\/?(?i)script(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "<\\/?(?i)embed(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)javascript", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)iframe", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)onload", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)onerror", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)eval\\((.*)\\)", trans: "<!-- Not Allowed String Filtered -->"}
xssconfig :
#xss filter 제외 URL
exclude-urls :
- "/assets/**"
- "/se2/**"
- "/multiSendTemplateApi/insertMultiSendTemplate"
- "/projectApi/manage/saveProject"
- "/api/v1/bo/sendNumMgt/insertNumber"
#- "/uc/test/testUrl" #테스트 URL
#xss 제외 방식(allow, except)
#allow - escape-characters 를 모두 적용 후 allow-elements 만 <, > 치환
#except - escape-characters 를 적용하지 않고 except-elements 적용
escape-type: "allow"
#allow 일 경우 넘어온 파라미터를 치환작업할 문자,문자열
#unescapeYn "Y"일 경우 unescape 시 치환 역작업을 하고 "N"인 경우 제외한다.
#공백치환을 추천하지 않는다. <sc<script>ript=alert(1)> 특정문자가 공백치환될 경우 차단우회방지를 위해 필터코멘트 사용.
escape-characters :
- {target: "<", trans: "&lt;", unescapeYn: "Y"}
- {target: ">", trans: "&gt;", unescapeYn: "Y"}
- {target: "'", trans: "&#39;", unescapeYn: "Y"}
- {target: "\\(", trans: "&#40;", unescapeYn: "Y"}
- {target: "\\)", trans: "&#41;", unescapeYn: "Y"}
- {target: "(?i)javascript", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "(?i)iframe", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "&lt;\\/?(?i)script", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
- {target: "(?i)eval\\((.*)\\)", trans: "<!-- Not Allowed String Filtered -->", unescapeYn: "N"}
#allow 일 경우 escape-characters 를 모두 적용 후 <, > 를 적용할 tag
allow-elements : "a, label, noscript, h1, h2, h3, h4, h5, h6,
p, i, b, u, strong, em, small, big, pre, code,
cite, samp, sub, sup, strike, center, blockquote,
hr, br, col, font, map, span, div, img,
ul, ol, li, dd, dt, dl, tbody, thead, tfoot,
table, td, th, tr, colgroup, fieldset, legend"
#except 일 경우 넘어온 파라미터를 치환작업할 문자,문자열
except-elements :
#공백치환을 추천하지 않는다. <sc<script>ript=alert(1)> 특정문자가 공백치환될 경우 차단우회방지를 위해 필터코멘트 사용.
- {target: "&#((?!;).)*?;", trans: "<!-- Not Allowed String Filtered -->"} #<IMG SRC="jav&#x0D;ascript:alert('XSS');"> 방지
- {target: "<\\/?(?i)svg(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "<\\/?(?i)script(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "<\\/?(?i)embed(>|\\s+((?!>).)*?>)", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)javascript", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)iframe", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)onload", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)onerror", trans: "<!-- Not Allowed String Filtered -->"}
- {target: "(?i)eval\\((.*)\\)", trans: "<!-- Not Allowed String Filtered -->"}