package com.ruoyi.system.domain.query;
|
|
import java.io.Serializable;
|
|
public class EnterpriseInfoSelectByConditionDBQuery implements Serializable {
|
|
private Long id;
|
|
/**
|
* 市名
|
*/
|
private String city;
|
|
/**
|
* 企业名称
|
*/
|
private String companyName;
|
|
/**
|
* 证书编号
|
*/
|
private String certificateNum;
|
|
/**
|
* 工艺类型
|
*/
|
private Integer technologyType;
|
|
/**
|
* @description 许可证状态
|
*/
|
private Byte validityState;
|
|
/**
|
* 是否删除
|
*/
|
private Byte isDelete;
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public Byte getIsDelete() {
|
return isDelete;
|
}
|
|
public void setIsDelete(Byte isDelete) {
|
this.isDelete = isDelete;
|
}
|
|
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 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;
|
}
|
}
|