pre
潘志宝
2024-09-25 9057425fa1472e48d79f7f8608ea80267e224135
提交 | 用户 | 时间
449017 1 package com.iailab.module.model.mpk.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.FieldFill;
4 import com.baomidou.mybatisplus.annotation.TableField;
5 import com.baomidou.mybatisplus.annotation.TableId;
6 import com.baomidou.mybatisplus.annotation.TableName;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 /**
13  * MPK模型文件
14  *
15  * @author PanZhibao
16  * @Description
17  * @createTime 2024年08月14日
18  */
19 @Data
20 @TableName("t_mpk_file")
21 public class MpkFileEntity implements Serializable {
8b3ee3 22     private static final long serialVersionUID = 1L;
449017 23
D 24     /**
25      * id
26      */
27     @TableId
28     private String id;
29
30     /**
31      * 模型名称
32      */
33     private String pyName;
34
35     /**
0255ea 36      * 模型中文名称
D 37      */
38     private String pyChineseName;
39
40     /**
449017 41      * 源文件保存路径
D 42      */
43     private String filePath;
44
45     /**
46      * 模型类型
47      */
48     private String pyType;
49
50     /**
51      * 包名
52      */
53     private String pkgName;
54
55     /**
56      * 类名
57      */
58     private String className;
59
60     /**
61      * 模型路径
62      */
63     private String pyModule;
64
65     /**
0255ea 66      * icon图片名
D 67      */
68         private String icon;
69
70     /**
71      * 所属菜单
72      */
73     private String menuName;
74
75     /**
76      * 所属组
77      */
78     private String groupName;
79
80     /**
449017 81      * 备注
D 82      */
83     private String remark;
84
85     /**
86      * 更新者
87      */
88     @TableField(fill = FieldFill.INSERT_UPDATE)
89     private Long updater;
90     /**
91      * 更新时间
92      */
93     @TableField(fill = FieldFill.INSERT_UPDATE)
94     private Date updateDate;
95
96     /**
97      * 创建者
98      */
99     @TableField(fill = FieldFill.INSERT)
100     private Long  creator;
101     /**
102      * 创建时间
103      */
104     @TableField(fill = FieldFill.INSERT)
105     private Date createDate;
106 }