DemandPortalDetailBo.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. package com.goafanti.portal.bo;
  2. import java.math.BigDecimal;
  3. public class DemandPortalDetailBo {
  4. private String id;
  5. private String name;
  6. private String keyword;
  7. private Integer industryCategoryA;
  8. private String industryCategoryAS;
  9. private String industryCategoryBS;
  10. private BigDecimal budgetCost;
  11. private String budgetCostS;
  12. private String province;
  13. private String city;
  14. private String problemDes;
  15. private String interestId;
  16. private String location;
  17. private String industryCategory;
  18. private String employerName;
  19. private Integer level;
  20. private String pictureUrl;
  21. private String employerAddress;
  22. private String validityPeriod;
  23. private Integer fixedbudget;
  24. public Integer getLevel() {
  25. return level;
  26. }
  27. public void setLevel(Integer level) {
  28. this.level = level;
  29. }
  30. public String getEmployerName() {
  31. return employerName;
  32. }
  33. public void setEmployerName(String employerName) {
  34. this.employerName = employerName;
  35. }
  36. public String getBudgetCostS() {
  37. return budgetCostS;
  38. }
  39. public void setBudgetCostS(String budgetCostS) {
  40. this.budgetCostS = budgetCostS;
  41. }
  42. public String getIndustryCategory() {
  43. return industryCategory;
  44. }
  45. public void setIndustryCategory(String industryCategory) {
  46. this.industryCategory = industryCategory;
  47. }
  48. public String getLocation() {
  49. return location;
  50. }
  51. public void setLocation(String location) {
  52. this.location = location;
  53. }
  54. public String getInterestId() {
  55. return interestId;
  56. }
  57. public void setInterestId(String interestId) {
  58. this.interestId = interestId;
  59. }
  60. public String getId() {
  61. return id;
  62. }
  63. public void setId(String id) {
  64. this.id = id;
  65. }
  66. public String getName() {
  67. return name;
  68. }
  69. public void setName(String name) {
  70. this.name = name;
  71. }
  72. public String getKeyword() {
  73. return keyword;
  74. }
  75. public void setKeyword(String keyword) {
  76. this.keyword = keyword;
  77. }
  78. public Integer getIndustryCategoryA() {
  79. return industryCategoryA;
  80. }
  81. public void setIndustryCategoryA(Integer industryCategoryA) {
  82. this.industryCategoryA = industryCategoryA;
  83. }
  84. public String getIndustryCategoryAS() {
  85. return industryCategoryAS;
  86. }
  87. public void setIndustryCategoryAS(String industryCategoryAS) {
  88. this.industryCategoryAS = industryCategoryAS;
  89. }
  90. public String getIndustryCategoryBS() {
  91. return industryCategoryBS;
  92. }
  93. public void setIndustryCategoryBS(String industryCategoryBS) {
  94. this.industryCategoryBS = industryCategoryBS;
  95. }
  96. public BigDecimal getBudgetCost() {
  97. return budgetCost;
  98. }
  99. public void setBudgetCost(BigDecimal budgetCost) {
  100. this.budgetCost = budgetCost;
  101. }
  102. public String getProblemDes() {
  103. return problemDes;
  104. }
  105. public void setProblemDes(String problemDes) {
  106. this.problemDes = problemDes;
  107. }
  108. public String getProvince() {
  109. return province;
  110. }
  111. public void setProvince(String province) {
  112. this.province = province;
  113. }
  114. public String getCity() {
  115. return city;
  116. }
  117. public void setCity(String city) {
  118. this.city = city;
  119. }
  120. public String getPictureUrl() {
  121. return pictureUrl;
  122. }
  123. public void setPictureUrl(String pictureUrl) {
  124. this.pictureUrl = pictureUrl;
  125. }
  126. public String getEmployerAddress() {
  127. return employerAddress;
  128. }
  129. public void setEmployerAddress(String employerAddress) {
  130. this.employerAddress = employerAddress;
  131. }
  132. public Integer getFixedbudget() {
  133. return fixedbudget;
  134. }
  135. public void setFixedbudget(Integer fixedbudget) {
  136. this.fixedbudget = fixedbudget;
  137. }
  138. public String getValidityPeriod() {
  139. return validityPeriod;
  140. }
  141. public void setValidityPeriod(String validityPeriod) {
  142. this.validityPeriod = validityPeriod;
  143. }
  144. }