회원정보 목록 조회 수정
This commit is contained in:
@@ -31,14 +31,10 @@ public class MembersDto {
|
|||||||
private String employeeNo;
|
private String employeeNo;
|
||||||
private String status;
|
private String status;
|
||||||
private String statusName;
|
private String statusName;
|
||||||
@JsonFormatDttm
|
@JsonFormatDttm private ZonedDateTime createdDttm;
|
||||||
private ZonedDateTime createdDttm;
|
@JsonFormatDttm private ZonedDateTime firstLoginDttm;
|
||||||
@JsonFormatDttm
|
@JsonFormatDttm private ZonedDateTime lastLoginDttm;
|
||||||
private ZonedDateTime firstLoginDttm;
|
@JsonFormatDttm private ZonedDateTime statusChgDttm;
|
||||||
@JsonFormatDttm
|
|
||||||
private ZonedDateTime lastLoginDttm;
|
|
||||||
@JsonFormatDttm
|
|
||||||
private ZonedDateTime statusChgDttm;
|
|
||||||
|
|
||||||
public Basic(
|
public Basic(
|
||||||
Long id,
|
Long id,
|
||||||
@@ -50,8 +46,7 @@ public class MembersDto {
|
|||||||
ZonedDateTime createdDttm,
|
ZonedDateTime createdDttm,
|
||||||
ZonedDateTime firstLoginDttm,
|
ZonedDateTime firstLoginDttm,
|
||||||
ZonedDateTime lastLoginDttm,
|
ZonedDateTime lastLoginDttm,
|
||||||
ZonedDateTime statusChgDttm
|
ZonedDateTime statusChgDttm) {
|
||||||
) {
|
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.uuid = uuid;
|
this.uuid = uuid;
|
||||||
this.userRole = userRole;
|
this.userRole = userRole;
|
||||||
|
|||||||
@@ -125,8 +125,7 @@ public class MembersRepositoryImpl implements MembersRepositoryCustom {
|
|||||||
memberEntity.createdDttm,
|
memberEntity.createdDttm,
|
||||||
memberEntity.firstLoginDttm,
|
memberEntity.firstLoginDttm,
|
||||||
memberEntity.lastLoginDttm,
|
memberEntity.lastLoginDttm,
|
||||||
memberEntity.statusChgDttm
|
memberEntity.statusChgDttm))
|
||||||
))
|
|
||||||
.from(memberEntity)
|
.from(memberEntity)
|
||||||
.where(builder)
|
.where(builder)
|
||||||
.offset(pageable.getOffset())
|
.offset(pageable.getOffset())
|
||||||
|
|||||||
Reference in New Issue
Block a user