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

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")