双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package com.ruoyi.project.system.attachment.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
 
/**
 * 附件对象 sys_attachment
 * 
 * @author wm
 * @date 2020-12-14
 */
public class Attachment extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private Long attachmentId;
 
    /** 创建人id */
    private Long createUserId;
 
    /** 更新者id */
    private Long updateUserId;
 
    /** 附件路径 */
    @Excel(name = "附件路径")
    private String filePath;
 
    /** 原始附件名称 */
    @Excel(name = "原始附件名称")
    private String originalFileName;
 
    /** 附件类型 */
    @Excel(name = "附件类型")
    private Integer attachmentType;
 
    /** 附件关联id */
    @Excel(name = "附件关联id")
    private Long fileJoinId;
 
    /** 附件所属公司 */
    @Excel(name = "附件所属公司")
    private Long companyId;
 
    /** 文件类型 */
    @Excel(name = "文件类型")
    private Integer fileType;
 
    public void setAttachmentId(Long attachmentId) 
    {
        this.attachmentId = attachmentId;
    }
 
    public Long getAttachmentId() 
    {
        return attachmentId;
    }
    public void setCreateUserId(Long createUserId) 
    {
        this.createUserId = createUserId;
    }
 
    public Long getCreateUserId() 
    {
        return createUserId;
    }
    public void setUpdateUserId(Long updateUserId) 
    {
        this.updateUserId = updateUserId;
    }
 
    public Long getUpdateUserId() 
    {
        return updateUserId;
    }
    public void setFilePath(String filePath) 
    {
        this.filePath = filePath;
    }
 
    public String getFilePath() 
    {
        return filePath;
    }
    public void setOriginalFileName(String originalFileName) 
    {
        this.originalFileName = originalFileName;
    }
 
    public String getOriginalFileName() 
    {
        return originalFileName;
    }
    public void setAttachmentType(Integer attachmentType) 
    {
        this.attachmentType = attachmentType;
    }
 
    public Integer getAttachmentType() 
    {
        return attachmentType;
    }
    public void setFileJoinId(Long fileJoinId) 
    {
        this.fileJoinId = fileJoinId;
    }
 
    public Long getFileJoinId() 
    {
        return fileJoinId;
    }
    public void setCompanyId(Long companyId) 
    {
        this.companyId = companyId;
    }
 
    public Long getCompanyId() 
    {
        return companyId;
    }
    public void setFileType(Integer fileType) 
    {
        this.fileType = fileType;
    }
 
    public Integer getFileType() 
    {
        return fileType;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("attachmentId", getAttachmentId())
            .append("createBy", getCreateBy())
            .append("createUserId", getCreateUserId())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateUserId", getUpdateUserId())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .append("filePath", getFilePath())
            .append("originalFileName", getOriginalFileName())
            .append("attachmentType", getAttachmentType())
            .append("fileJoinId", getFileJoinId())
            .append("companyId", getCompanyId())
            .append("fileType", getFileType())
            .toString();
    }
}