houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.prod.entity;
H 2
3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import lombok.Data;
7 import lombok.EqualsAndHashCode;
8
9 import java.io.Serializable;
10 @Data
11 @EqualsAndHashCode(callSuper=false)
12 @TableName("t_evaluate_index")
13 public class IndexEvaluateSystemEntity implements Serializable {
14     private static final long serialVersionUID = 1L;
15
16     /**
17      * 应用id
18      */
19     @TableId(type = IdType.ASSIGN_UUID)
20     private String id;
21     /**
22      * 父ID
23      */
24     private String pid;
25     /**
26      * 编码
27      */
28     private String code;
29     /**
30      * 评价指标
31      */
32     private String evaluateIndex;
33     /**
34      * 权重
35      */
36     private Integer weight;
37     /**
38      * 创建人
39      */
40     private String creator;
41     /**
42      * 创建时间
43      */
44     private String createDate;
45     /**
46      * 更新人
47      */
48     private String updater;
49     /**
50      * 更新时间
51      */
52     private String updateDate;
53 }