1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| package com.dy.pmsGlobal.pojoOth;
|
| import com.baomidou.mybatisplus.annotation.TableField;import java.util.Date;
|
| /**
| * 文件上传下载用 表
| */
| public class OthFileManage {
|
| public Long id;
|
| public Long userId;
|
| /**
| * 文件编号
| */
| public Long fileId;
|
| /**
| * 是否删除,1是,0否
| */
| public Boolean deleted;
|
| /**
| * 上传时间
| */
| public Date dt;
|
| @TableField(exist = false)
| public String webUrl;
| @TableField(exist = false)
| public String orgName;
| @TableField(exist = false)
| public String extName;
| @TableField(exist = false)
| public String userName;
|
| }
|
|