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