houzhongjian
2024-11-07 a874b928e16320839315b9abcdf2cece1229a424
提交 | 用户 | 时间
449017 1 package com.iailab.module.model.mpk.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6
7 import java.io.Serializable;
8 import java.util.Date;
9
10 /**
11  * @description: 生成代码记录表
12  * @author: dzd 
13  * @date: 2024/8/20 11:36
14  **/
15 @Data
16 @TableName("t_mpk_generator_code_history")
17 public class GeneratorCodeHistoryEntity implements Serializable {
18
19     /**
20      * id
21      */
22     @TableId
23     private String id;
24
25     /**
26      * mdk_id
27      */
28     private String mdkId;
29
30     /**
31      * 文件名
32      */
33     private String fileName;
34
35     /**
36      * 文件保存路径
37      */
38     private String filePath;
39
40     /**
41      * 备注
42      */
43     private String remark;
44
45     /**
46      * 生成时间
47      */
48     private Date createTime;
49 }