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