双重预防项目-国泰新华二开定制版
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
package com.ruoyi.project.tr.articleRegulation.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;
 
/**
 * 法律法规政策文章对象 tr_article_regulation
 * 
 * @author wm
 * @date 2020-06-11
 */
public class ArticleRegulation extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 法律法规政策文章表主键 */
    private Long articleRegulationId;
 
    /** 法律法规文章标题 */
    @Excel(name = "法律法规文章标题")
    private String regulationTitle;
 
    /** 法律法规文章内容 */
    @Excel(name = "法律法规文章内容")
    private String regulationContent;
 
    /** 公司id */
    @Excel(name = "公司id")
    private Long companyId;
 
    /** 法律法规文章类型 */
    @Excel(name = "法律法规文章类型")
    private Integer regulationType;
 
    private String ownedFile;
 
    public String getOwnedFile() {
        return ownedFile;
    }
 
    public void setOwnedFile(String ownedFile) {
        this.ownedFile = ownedFile;
    }
 
    public void setArticleRegulationId(Long articleRegulationId)
    {
        this.articleRegulationId = articleRegulationId;
    }
 
    public Long getArticleRegulationId() 
    {
        return articleRegulationId;
    }
    public void setRegulationTitle(String regulationTitle) 
    {
        this.regulationTitle = regulationTitle;
    }
 
    public String getRegulationTitle() 
    {
        return regulationTitle;
    }
    public void setRegulationContent(String regulationContent) 
    {
        this.regulationContent = regulationContent;
    }
 
    public String getRegulationContent() 
    {
        return regulationContent;
    }
    public void setCompanyId(Long companyId) 
    {
        this.companyId = companyId;
    }
 
    public Long getCompanyId() 
    {
        return companyId;
    }
    public void setRegulationType(Integer regulationType) 
    {
        this.regulationType = regulationType;
    }
 
    public Integer getRegulationType() 
    {
        return regulationType;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("articleRegulationId", getArticleRegulationId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .append("regulationTitle", getRegulationTitle())
            .append("regulationContent", getRegulationContent())
            .append("companyId", getCompanyId())
            .append("regulationType", getRegulationType())
            .toString();
    }
}