|
@@ -3,6 +3,7 @@ package com.its.op.dto.its.oper;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import com.its.op.entity.its.oper.TbMsWebMember;
|
|
|
import com.its.utils.AES256Util;
|
|
|
+import com.its.utils.ItsUtils;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.*;
|
|
@@ -50,7 +51,7 @@ public class TbMsWebMemberDto implements Serializable {
|
|
|
@JsonProperty("answer")
|
|
|
private String answer;
|
|
|
|
|
|
- @ApiModelProperty("등록시각") // Y DATE(0)
|
|
|
+ @ApiModelProperty("등록시각") // Y VARCHAR(14)
|
|
|
@JsonProperty("regdate")
|
|
|
private String regdate;
|
|
|
|
|
@@ -82,8 +83,8 @@ public class TbMsWebMemberDto implements Serializable {
|
|
|
@NoArgsConstructor(access = AccessLevel.PROTECTED)
|
|
|
public static class TbMsWebMemberUpdReq {
|
|
|
|
|
|
- @ApiModelProperty("메일주소, Nullable = N, VARCHAR(50)") // N VARCHAR(50)
|
|
|
- @JsonProperty("아이디")
|
|
|
+ @ApiModelProperty("아이디, Nullable = N, VARCHAR(50)") // N VARCHAR(50)
|
|
|
+ @JsonProperty("email")
|
|
|
@Size(min=1, max=50)
|
|
|
private String email;
|
|
|
|
|
@@ -152,7 +153,7 @@ public class TbMsWebMemberDto implements Serializable {
|
|
|
this.userauth = userauth;
|
|
|
this.question = question;
|
|
|
this.answer = answer;
|
|
|
- this.regdate = regdate;
|
|
|
+ this.regdate = ItsUtils.getSysTime();
|
|
|
this.loginFailCount = login_fail_count;
|
|
|
this.isAccountLock = is_account_lock;
|
|
|
this.ipAddress = ip_address;
|