[UPDATE] SPEC 수정

main
bjkim 11 months ago
parent 10602de6c9
commit 220a0f4e89

@ -35,7 +35,7 @@ public class ProjectEntity {
@Comment("프로젝트 이름") @Comment("프로젝트 이름")
private String prjNm; private String prjNm;
@Schema(description = "프로젝트 설명", example = "ETRI와 함께하는 AI 개발") @Schema(description = "프로젝트 설명", example = "AI 개발")
@Comment("프로젝트 설명") @Comment("프로젝트 설명")
private String prjDesc; private String prjDesc;
@ -52,28 +52,28 @@ public class ProjectEntity {
private String delYn; private String delYn;
@CreatedDate @CreatedDate
@Schema(description = "등록 일자", example = "2025-08-01T12:34:56") @Schema(description = "등록 일자")
@Comment("등록 일자") @Comment("등록 일자")
private String regDate; private String regDate;
@Schema(description = "등록 유저 ID", example = "admin") @Schema(description = "등록 유저 ID", example = "system")
@Comment("등록 유저 ID") @Comment("등록 유저 ID")
private String regUserId; private String regUserId;
@Schema(description = "등록 유저 이름", example = "관리자") @Schema(description = "등록 유저 이름", example = "시스템")
@Comment("등록 유저 이름") @Comment("등록 유저 이름")
private String regUserNm; private String regUserNm;
@LastModifiedDate @LastModifiedDate
@Schema(description = "수정 일자", example = "2025-08-01T13:45:00") @Schema(description = "수정 일자")
@Comment("수정 일자") @Comment("수정 일자")
private String modDate; private String modDate;
@Schema(description = "수정 유저 ID", example = "editor") @Schema(description = "수정 유저 ID", example = "system")
@Comment("수정 유저 ID") @Comment("수정 유저 ID")
private String modUserId; private String modUserId;
@Schema(description = "수정 유저 이름", example = "에디터") @Schema(description = "수정 유저 이름", example = "시스템")
@Comment("수정 유저 이름") @Comment("수정 유저 이름")
private String modUserNm; private String modUserNm;
} }

Loading…
Cancel
Save