Sfoglia il codice sorgente

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

hechunping 1 mese fa
parent
commit
537cf7052c
1 ha cambiato i file con 15 aggiunte e 0 eliminazioni
  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;
 }