| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- package com.goafanti.portal.bo;
- import java.math.BigDecimal;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- import com.goafanti.common.constant.AFTConstants;
- public class DemandPortalDetailBo {
- private String id;
- private String name;
- private String keyword;
- private Integer industryCategoryA;
- private String industryCategoryAS;
- private String industryCategoryBS;
- private BigDecimal budgetCost;
- private String budgetCostS;
- private String province;
- private String city;
- private String problemDes;
- private String interestId;
- private String location;
- private String industryCategory;
- private String employerName;
- private Integer level;
-
- private String pictureUrl;
-
- private String employerAddress;
-
- private Date validityPeriod;
-
- private Integer fixedbudget;
-
- private String validityPeriodS;
-
- private Integer countDemandInterest;
-
- private String employerContactsMobile;
-
- private String dataCategory;
- public Integer getLevel() {
- return level;
- }
- public void setLevel(Integer level) {
- this.level = level;
- }
- public String getEmployerName() {
- return employerName;
- }
- public void setEmployerName(String employerName) {
- this.employerName = employerName;
- }
- public String getBudgetCostS() {
- return budgetCostS;
- }
- public void setBudgetCostS(String budgetCostS) {
- this.budgetCostS = budgetCostS;
- }
- public String getIndustryCategory() {
- return industryCategory;
- }
- public void setIndustryCategory(String industryCategory) {
- this.industryCategory = industryCategory;
- }
- public String getLocation() {
- return location;
- }
- public void setLocation(String location) {
- this.location = location;
- }
- public String getInterestId() {
- return interestId;
- }
- public void setInterestId(String interestId) {
- this.interestId = interestId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getKeyword() {
- return keyword;
- }
- public void setKeyword(String keyword) {
- this.keyword = keyword;
- }
- public Integer getIndustryCategoryA() {
- return industryCategoryA;
- }
- public void setIndustryCategoryA(Integer industryCategoryA) {
- this.industryCategoryA = industryCategoryA;
- }
- public String getIndustryCategoryAS() {
- return industryCategoryAS;
- }
- public void setIndustryCategoryAS(String industryCategoryAS) {
- this.industryCategoryAS = industryCategoryAS;
- }
- public String getIndustryCategoryBS() {
- return industryCategoryBS;
- }
- public void setIndustryCategoryBS(String industryCategoryBS) {
- this.industryCategoryBS = industryCategoryBS;
- }
- public BigDecimal getBudgetCost() {
- return budgetCost;
- }
- public void setBudgetCost(BigDecimal budgetCost) {
- this.budgetCost = budgetCost;
- }
- public String getProblemDes() {
- return problemDes;
- }
- public void setProblemDes(String problemDes) {
- this.problemDes = problemDes;
- }
- 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 getPictureUrl() {
- return pictureUrl;
- }
- public void setPictureUrl(String pictureUrl) {
- this.pictureUrl = pictureUrl;
- }
- public String getEmployerAddress() {
- return employerAddress;
- }
- public void setEmployerAddress(String employerAddress) {
- this.employerAddress = employerAddress;
- }
- public Integer getFixedbudget() {
- return fixedbudget;
- }
- public void setFixedbudget(Integer fixedbudget) {
- this.fixedbudget = fixedbudget;
- }
- public Date getValidityPeriod() {
- return validityPeriod;
- }
- public void setValidityPeriod(Date validityPeriod) {
- this.validityPeriod = validityPeriod;
- }
- public String getValidityPeriodS() {
- SimpleDateFormat sdf =new SimpleDateFormat(AFTConstants.YYYYMMDD);
- if(null==validityPeriod) {
- return null ;
- }else {
- validityPeriodS=sdf.format(this.validityPeriod);
- return validityPeriodS;
- }
- }
- public void setValidityPeriodS(String validityPeriodS) {
- this.validityPeriodS = validityPeriodS;
- }
- public Integer getCountDemandInterest() {
- return countDemandInterest;
- }
- public void setCountDemandInterest(Integer countDemandInterest) {
- this.countDemandInterest = countDemandInterest;
- }
- public String getEmployerContactsMobile() {
- return employerContactsMobile;
- }
- public void setEmployerContactsMobile(String employerContactsMobile) {
- this.employerContactsMobile = employerContactsMobile;
- }
- public String getDataCategory() {
- return dataCategory;
- }
- public void setDataCategory(String dataCategory) {
- this.dataCategory = dataCategory;
- }
- @Override
- public String toString() {
- return "DemandPortalDetailBo [id=" + id + ", name=" + name + ", keyword=" + keyword + ", industryCategoryA="
- + industryCategoryA + ", industryCategoryAS=" + industryCategoryAS + ", industryCategoryBS="
- + industryCategoryBS + ", budgetCost=" + budgetCost + ", budgetCostS=" + budgetCostS + ", province="
- + province + ", city=" + city + ", problemDes=" + problemDes + ", interestId=" + interestId
- + ", location=" + location + ", industryCategory=" + industryCategory + ", employerName=" + employerName
- + ", level=" + level + ", pictureUrl=" + pictureUrl + ", employerAddress=" + employerAddress
- + ", validityPeriod=" + validityPeriod + ", fixedbudget=" + fixedbudget + ", validityPeriodS="
- + validityPeriodS + ", countDemandInterest=" + countDemandInterest + ", employerContactsMobile="
- + employerContactsMobile + ", dataCategory=" + dataCategory + "]";
- }
-
-
-
- }
|