dengzedong
2024-09-14 e18f2001fda0eccfbf2aa617e127c70b92083909
提交 | 用户 | 时间
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 {
22
23     /**
24      * id
25      */
26     @TableId
27     private String id;
28
29     /**
30      * 模型名称
31      */
32     private String pyName;
33
34     /**
0255ea 35      * 模型中文名称
D 36      */
37     private String pyChineseName;
38
39     /**
449017 40      * 源文件保存路径
D 41      */
42     private String filePath;
43
44     /**
45      * 模型类型
46      */
47     private String pyType;
48
49     /**
50      * 包名
51      */
52     private String pkgName;
53
54     /**
55      * 类名
56      */
57     private String className;
58
59     /**
60      * 模型路径
61      */
62     private String pyModule;
63
64     /**
0255ea 65      * icon图片名
D 66      */
67         private String icon;
68
69     /**
70      * 所属菜单
71      */
72     private String menuName;
73
74     /**
75      * 所属组
76      */
77     private String groupName;
78
79     /**
449017 80      * 备注
D 81      */
82     private String remark;
83
84     /**
85      * 更新者
86      */
87     @TableField(fill = FieldFill.INSERT_UPDATE)
88     private Long updater;
89     /**
90      * 更新时间
91      */
92     @TableField(fill = FieldFill.INSERT_UPDATE)
93     private Date updateDate;
94
95     /**
96      * 创建者
97      */
98     @TableField(fill = FieldFill.INSERT)
99     private Long  creator;
100     /**
101      * 创建时间
102      */
103     @TableField(fill = FieldFill.INSERT)
104     private Date createDate;
105 }