dengzedong
2024-09-13 3acc3151d842922fda223cbed8987b3fe9f83e24
提交 | 用户 | 时间
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     /**
35      * 源文件保存路径
36      */
37     private String filePath;
38
39     /**
40      * 模型类型
41      */
42     private String pyType;
43
44     /**
45      * 包名
46      */
47     private String pkgName;
48
49     /**
50      * 类名
51      */
52     private String className;
53
54     /**
55      * 模型路径
56      */
57     private String pyModule;
58
59     /**
60      * 备注
61      */
62     private String remark;
63
64     /**
65      * 更新者
66      */
67     @TableField(fill = FieldFill.INSERT_UPDATE)
68     private Long updater;
69     /**
70      * 更新时间
71      */
72     @TableField(fill = FieldFill.INSERT_UPDATE)
73     private Date updateDate;
74
75     /**
76      * 创建者
77      */
78     @TableField(fill = FieldFill.INSERT)
79     private Long  creator;
80     /**
81      * 创建时间
82      */
83     @TableField(fill = FieldFill.INSERT)
84     private Date createDate;
85 }