From 220a0f4e89085f4ffbe1357025fb56b40fb96ae2 Mon Sep 17 00:00:00 2001 From: bjkim Date: Mon, 4 Aug 2025 11:19:25 +0900 Subject: [PATCH] =?UTF-8?q?[UPDATE]=20SPEC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../re/etri/security/jwt/entity/ProjectEntity.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/kr/re/etri/security/jwt/entity/ProjectEntity.java b/src/main/java/kr/re/etri/security/jwt/entity/ProjectEntity.java index a7e5c1d..37e6c9f 100644 --- a/src/main/java/kr/re/etri/security/jwt/entity/ProjectEntity.java +++ b/src/main/java/kr/re/etri/security/jwt/entity/ProjectEntity.java @@ -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; }