사용자(관리자) 수정

This commit is contained in:
USER
2022-09-14 18:12:25 +09:00
parent 93b7437afc
commit d5c4b2e113
4 changed files with 6 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ import java.io.Serializable;
@Data
public class AllMemoListReqDto implements Serializable {
@NotNull
// @NotNull
@ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String")
private String userId;

View File

@@ -14,11 +14,11 @@ public class MemberAdminDetailReqDto implements Serializable {
@ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String")
private String userId;
@NotNull
//@NotNull
@ApiModelProperty(example = "페이지당 조회할 목록 수", name = "페이지당 조회할 목록 수", dataType = "String")
private int pagePerRows;
@NotNull
//@NotNull
@ApiModelProperty(example = "현재 페이지", name = "현재 페이지", dataType = "int")
private int page;
}