提交 | 用户 | 时间
|
449017
|
1 |
package com.iailab.module.model.mpk.dto; |
D |
2 |
|
|
3 |
import com.iailab.module.model.mpk.entity.ModelMethodEntity; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
import java.util.Date; |
|
8 |
import java.util.List; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年08月14日 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
public class MpkFileDTO implements Serializable { |
|
17 |
private static final long serialVersionUID = 1L; |
|
18 |
|
|
19 |
private String id; |
|
20 |
|
|
21 |
private String pyName; |
|
22 |
|
0255ea
|
23 |
private String pyChineseName; |
D |
24 |
|
449017
|
25 |
private String filePath; |
D |
26 |
|
|
27 |
private String pyType; |
|
28 |
|
|
29 |
private String pkgName; |
|
30 |
|
|
31 |
private String className; |
|
32 |
|
|
33 |
private String pyModule; |
0255ea
|
34 |
|
D |
35 |
private String icon; |
|
36 |
|
|
37 |
private String menuName; |
|
38 |
|
|
39 |
private String groupName; |
449017
|
40 |
|
D |
41 |
private String remark; |
|
42 |
|
|
43 |
private Long updater; |
|
44 |
|
|
45 |
private Date updateDate; |
|
46 |
|
|
47 |
private Long creator; |
|
48 |
|
|
49 |
private Date createDate; |
|
50 |
|
d8db4b
|
51 |
private List<String> menuAndGroup; |
潘 |
52 |
|
0255ea
|
53 |
private List<ModelMethodDTO> modelMethods; |
449017
|
54 |
} |