DemandPortalDetailBo.java 4.3 KB

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