소스 검색

refactor(Project): 为 Project 实体类字段添加注释

hechunping 1 개월 전
부모
커밋
537cf7052c
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15 0
      src/main/java/com/xynet/marketing/entity/Project.java

+ 15 - 0
src/main/java/com/xynet/marketing/entity/Project.java

@@ -22,13 +22,28 @@ public class Project implements Serializable {
     @TableId(type = IdType.AUTO)
     private Integer id;
 
+    /**
+     * 项目名称
+     */
     private String name;
 
+    /**
+     * 项目编码
+     */
     private String code;
 
+    /**
+     * 激活金额
+     */
     private Integer activateAmount;
 
+    /**
+     * 介绍
+     */
     private String intro;
 
+    /**
+     * 图标
+     */
     private String icon;
 }