AppDemandBo.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. package com.goafanti.demand.bo;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class AppDemandBo {
  5. private int fieldA;//行业
  6. private int fieldB;//行业二级
  7. private String field1;//行业---字符串
  8. private String field2;//二级行业 --字符串
  9. private int isHot;//热门
  10. private Date releaseDate;//发布时间
  11. private int interestCount;//收藏数
  12. private String id;//id
  13. private int demandType;// 需求类型(0-企业技术需求,1-技术设备类需求,2-产学研合作需求,3-研产资金需求,4-地区产业需求,5-技术人才型需求)
  14. private String name;//需求名称
  15. private String problemDes;//问题描述
  16. private String pictureUrl;//图片
  17. private int releaseStatus;//发布状态
  18. private int auditStatus;//审核状态
  19. private int interest;//是否感兴趣
  20. private int orderCount;//订单数
  21. private String keyword;//关键词
  22. private BigDecimal fixedBudget;//固定预算
  23. private BigDecimal crowdCost;//资金需求金额
  24. private BigDecimal budgetCost;
  25. private Date createTime;
  26. public int getFieldA() {
  27. return fieldA;
  28. }
  29. public void setFieldA(int fieldA) {
  30. this.fieldA = fieldA;
  31. }
  32. public int getFieldB() {
  33. return fieldB;
  34. }
  35. public void setFieldB(int fieldB) {
  36. this.fieldB = fieldB;
  37. }
  38. public String getField1() {
  39. return field1;
  40. }
  41. public void setField1(String field1) {
  42. this.field1 = field1;
  43. }
  44. public String getField2() {
  45. return field2;
  46. }
  47. public void setField2(String field2) {
  48. this.field2 = field2;
  49. }
  50. public int getIsHot() {
  51. return isHot;
  52. }
  53. public void setIsHot(int isHot) {
  54. this.isHot = isHot;
  55. }
  56. public Date getReleaseDate() {
  57. return releaseDate;
  58. }
  59. public void setReleaseDate(Date releaseDate) {
  60. this.releaseDate = releaseDate;
  61. }
  62. public int getInterestCount() {
  63. return interestCount;
  64. }
  65. public void setInterestCount(int interestCount) {
  66. this.interestCount = interestCount;
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public int getDemandType() {
  75. return demandType;
  76. }
  77. public void setDemandType(int demandType) {
  78. this.demandType = demandType;
  79. }
  80. public String getName() {
  81. return name;
  82. }
  83. public void setName(String name) {
  84. this.name = name;
  85. }
  86. public String getProblemDes() {
  87. return problemDes;
  88. }
  89. public void setProblemDes(String problemDes) {
  90. this.problemDes = problemDes;
  91. }
  92. public String getPictureUrl() {
  93. return pictureUrl;
  94. }
  95. public void setPictureUrl(String pictureUrl) {
  96. this.pictureUrl = pictureUrl;
  97. }
  98. public int getReleaseStatus() {
  99. return releaseStatus;
  100. }
  101. public void setReleaseStatus(int releaseStatus) {
  102. this.releaseStatus = releaseStatus;
  103. }
  104. public int getAuditStatus() {
  105. return auditStatus;
  106. }
  107. public void setAuditStatus(int auditStatus) {
  108. this.auditStatus = auditStatus;
  109. }
  110. public int getInterest() {
  111. return interest;
  112. }
  113. public void setInterest(int interest) {
  114. this.interest = interest;
  115. }
  116. public int getOrderCount() {
  117. return orderCount;
  118. }
  119. public void setOrderCount(int orderCount) {
  120. this.orderCount = orderCount;
  121. }
  122. public String getKeyword() {
  123. return keyword;
  124. }
  125. public void setKeyword(String keyword) {
  126. this.keyword = keyword;
  127. }
  128. public BigDecimal getFixedBudget() {
  129. return fixedBudget;
  130. }
  131. public void setFixedBudget(BigDecimal fixedBudget) {
  132. this.fixedBudget = fixedBudget;
  133. }
  134. public BigDecimal getCrowdCost() {
  135. return crowdCost;
  136. }
  137. public void setCrowdCost(BigDecimal crowdCost) {
  138. this.crowdCost = crowdCost;
  139. }
  140. public BigDecimal getBudgetCost() {
  141. return budgetCost;
  142. }
  143. public void setBudgetCost(BigDecimal budgetCost) {
  144. this.budgetCost = budgetCost;
  145. }
  146. public Date getCreateTime() {
  147. return createTime;
  148. }
  149. public void setCreateTime(Date createTime) {
  150. this.createTime = createTime;
  151. }
  152. }