package com.ruoyi.system.domain.req;
|
|
import java.io.Serializable;
|
|
public class EnterpriseInfoSelectByConditionReqDTO implements Serializable {
|
|
/**
|
* 市名
|
*/
|
private String city;
|
|
/**
|
* 企业名称
|
*/
|
private String companyName;
|
|
/**
|
* 证书编号
|
*/
|
private String certificateNum;
|
|
/**
|
* 工艺类型
|
*/
|
private Integer technologyType;
|
|
/**
|
* @description 许可证状态
|
*/
|
private Byte validityState;
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getCompanyName() {
|
return companyName;
|
}
|
|
public void setCompanyName(String companyName) {
|
this.companyName = companyName;
|
}
|
|
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 getValidityState() {
|
return validityState;
|
}
|
|
public void setValidityState(Byte validityState) {
|
this.validityState = validityState;
|
}
|
}
|