| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- package com.goafanti.portal.bo;
- import java.math.BigDecimal;
- 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 String validityPeriod;
-
- private Integer fixedbudget;
- 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 String getValidityPeriod() {
- return validityPeriod;
- }
- public void setValidityPeriod(String validityPeriod) {
- this.validityPeriod = validityPeriod;
- }
-
-
-
- }
|