package com.gk.firework.Domain.Vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.gk.firework.Domain.Utils.StringUtils;
|
|
import java.math.BigDecimal;
|
import java.text.SimpleDateFormat;
|
import java.util.ArrayList;
|
import java.util.List;
|
import java.util.Date;
|
import java.util.stream.Collectors;
|
|
public class EnterpriseExportVo {
|
|
private String enterprisename;
|
|
private String enterprisenumber;
|
|
private String safetysupervision;
|
|
private String securitysupervisory;
|
|
private String level;
|
|
private String ismajorhazard;
|
|
private String validstarttime;
|
|
private String validendtime;
|
|
private String province;
|
|
private String city;
|
|
private String district;
|
|
private String street;
|
|
private String committee;
|
|
private String valid;
|
|
private String location;
|
|
private String validtime;
|
|
private String insurancecompany;
|
|
private String insureendtime;
|
|
private String insurestarttime;
|
|
private String ispaysafetyinsurance;
|
|
private String insurancecontractnumber;
|
|
private String insureamount;
|
|
private String personnumber;
|
|
private String employeenumber;
|
|
|
|
|
|
public String getEnterprisename() {
|
return enterprisename;
|
}
|
|
public void setEnterprisename(String enterprisename) {
|
this.enterprisename = enterprisename;
|
}
|
|
public String getEnterprisenumber() {
|
return enterprisenumber;
|
}
|
|
public void setEnterprisenumber(String enterprisenumber) {
|
this.enterprisenumber = enterprisenumber;
|
}
|
|
public String getSafetysupervision() {
|
return safetysupervision;
|
}
|
|
public void setSafetysupervision(String safetysupervision) {
|
this.safetysupervision = safetysupervision;
|
}
|
|
public String getSecuritysupervisory() {
|
return securitysupervisory;
|
}
|
|
public void setSecuritysupervisory(String securitysupervisory) {
|
this.securitysupervisory = securitysupervisory;
|
}
|
|
public String getLevel() {
|
return level;
|
}
|
|
public void setLevel(String level) {
|
this.level = level;
|
}
|
|
public String getIsmajorhazard() {
|
return ismajorhazard;
|
}
|
|
public void setIsmajorhazard(String ismajorhazard) {
|
this.ismajorhazard = ismajorhazard;
|
}
|
|
public String getValidstarttime() {
|
return validstarttime;
|
}
|
|
public void setValidstarttime(String validstarttime) {
|
this.validstarttime = validstarttime;
|
}
|
|
public String getValidendtime() {
|
return validendtime;
|
}
|
|
public void setValidendtime(String validendtime) {
|
this.validendtime = validendtime;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getDistrict() {
|
return district;
|
}
|
|
public void setDistrict(String district) {
|
this.district = district;
|
}
|
|
public String getStreet() {
|
return street;
|
}
|
|
public void setStreet(String street) {
|
this.street = street;
|
}
|
|
public String getCommittee() {
|
return committee;
|
}
|
|
public void setCommittee(String committee) {
|
this.committee = committee;
|
}
|
|
public String getValid() {
|
return valid;
|
}
|
|
public void setValid(String valid) {
|
this.valid = valid;
|
}
|
|
public String getLocation() {
|
|
return (StringUtils.isBlank(province)?"":province)+
|
(StringUtils.isBlank(city)?"":"-"+city)+
|
(StringUtils.isBlank(district)?"":"-"+district)+
|
(StringUtils.isBlank(street)?"":"-"+street)+
|
(StringUtils.isBlank(committee)?"":"-"+committee);
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
public String getValidtime() {
|
|
if (validstarttime == null && validendtime == null) {
|
return "";
|
}
|
if (validstarttime == null ) {
|
return validendtime + "";
|
}
|
if (validendtime == null) {
|
return validstarttime + "";
|
}
|
|
return validstarttime + " - " + validendtime;
|
}
|
|
public void setValidtime(String validtime) {
|
this.validtime = validtime;
|
}
|
|
public String getInsurancecompany() {
|
return insurancecompany;
|
}
|
|
public void setInsurancecompany(String insurancecompany) {
|
this.insurancecompany = insurancecompany;
|
}
|
|
public String getInsureendtime() {
|
return insureendtime;
|
}
|
|
public void setInsureendtime(String insureendtime) {
|
this.insureendtime = insureendtime;
|
}
|
|
public String getInsurestarttime() {
|
return insurestarttime;
|
}
|
|
public void setInsurestarttime(String insurestarttime) {
|
this.insurestarttime = insurestarttime;
|
}
|
|
public String getIspaysafetyinsurance() {
|
return ispaysafetyinsurance;
|
}
|
|
public void setIspaysafetyinsurance(String ispaysafetyinsurance) {
|
this.ispaysafetyinsurance = ispaysafetyinsurance;
|
}
|
|
public String getInsurancecontractnumber() {
|
return insurancecontractnumber;
|
}
|
|
public void setInsurancecontractnumber(String insurancecontractnumber) {
|
this.insurancecontractnumber = insurancecontractnumber;
|
}
|
|
public String getInsureamount() {
|
return insureamount;
|
}
|
|
public void setInsureamount(String insureamount) {
|
this.insureamount = insureamount;
|
}
|
|
|
public String getPersonnumber() {
|
return personnumber;
|
}
|
|
public void setPersonnumber(String personnumber) {
|
this.personnumber = personnumber;
|
}
|
|
public String getEmployeenumber() {
|
return employeenumber;
|
}
|
|
public void setEmployeenumber(String employeenumber) {
|
this.employeenumber = employeenumber;
|
}
|
}
|