package com.ruoyi.system.domain.resp; import java.io.Serializable; public class EnterpriseInfoByConditionRespDTO 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; } }