zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.shlanbao.tzsc.pms.qm.prod.beans;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * QmProcFile entity. 
 * @author MyEclipse Persistence Tools
 */
@SuppressWarnings("serial")
public class QmProdFileBean implements java.io.Serializable {
    private String id;
    private String modUserName;
    private String addUserName;
    private String fileName;
    private String fileType;
    private String fileId;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String createTime;
    private String prodManageId;
    private String isDeleted;
    private Long securityLevel;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String modifyTime;
    private String prodVersion;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getModUserName() {
        return modUserName;
    }
    public void setModUserName(String modUserName) {
        this.modUserName = modUserName;
    }
    public String getAddUserName() {
        return addUserName;
    }
    public void setAddUserName(String addUserName) {
        this.addUserName = addUserName;
    }
    public String getFileName() {
        return fileName;
    }
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
    public String getFileType() {
        return fileType;
    }
    public void setFileType(String fileType) {
        this.fileType = fileType;
    }
    public String getFileId() {
        return fileId;
    }
    public void setFileId(String fileId) {
        this.fileId = fileId;
    }
    public String getCreateTime() {
        return createTime;
    }
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
    public String getProdManageId() {
        return prodManageId;
    }
    public void setProdManageId(String prodManageId) {
        this.prodManageId = prodManageId;
    }
    public String getIsDeleted() {
        return isDeleted;
    }
    public void setIsDeleted(String isDeleted) {
        this.isDeleted = isDeleted;
    }
    public Long getSecurityLevel() {
        return securityLevel;
    }
    public void setSecurityLevel(Long securityLevel) {
        this.securityLevel = securityLevel;
    }
    public String getModifyTime() {
        return modifyTime;
    }
    public void setModifyTime(String modifyTime) {
        this.modifyTime = modifyTime;
    }
    public String getProdVersion() {
        return prodVersion;
    }
    public void setProdVersion(String prodVersion) {
        this.prodVersion = prodVersion;
    }
    
 
}