郑永安
2023-06-19 451e341df739f387201914b67323efa1c4f4c8d3
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
package com.ruoyi.system.domain.resp;
 
import java.io.Serializable;
import java.util.List;
 
public class EnterpriseInfoByCityRespDTO implements Serializable {
 
    private Long id;
 
 
    private String companyName;
 
    /**
     * 企业所在市
     */
    private String companyCity;
 
    /**
     * 企业所在区县
     */
    private String companyArea;
 
    /**
     * 证书有效期状态
     */
    private Byte validityState;
 
    /**
     * 证书编号
     */
    private String certificateNum;
 
    /**
     * 工艺类型
     */
    private Integer technologyType;
 
    /**
     * 重大危险源等级
     */
    private Byte majorHazardSourceLevel;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getCompanyName() {
        return companyName;
    }
 
    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }
 
    public String getCompanyCity() {
        return companyCity;
    }
 
    public void setCompanyCity(String companyCity) {
        this.companyCity = companyCity;
    }
 
    public String getCompanyArea() {
        return companyArea;
    }
 
    public void setCompanyArea(String companyArea) {
        this.companyArea = companyArea;
    }
 
    public Byte getValidityState() {
        return validityState;
    }
 
    public void setValidityState(Byte validityState) {
        this.validityState = validityState;
    }
 
    public String getCertificateNum() {
        return certificateNum;
    }
 
    public void setCertificateNum(String certificateNum) {
        this.certificateNum = certificateNum;
    }
 
    public Integer getTechnologyType() {
        return technologyType;
    }
 
    public void setTechnologyType(Integer technologyType) {
        this.technologyType = technologyType;
    }
 
    public Byte getMajorHazardSourceLevel() {
        return majorHazardSourceLevel;
    }
 
    public void setMajorHazardSourceLevel(Byte majorHazardSourceLevel) {
        this.majorHazardSourceLevel = majorHazardSourceLevel;
    }
}