瀏覽代碼

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;
 }