DemandManageDetailBo.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. package com.goafanti.demand.bo;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  6. import com.goafanti.common.model.DemandFollowDetail;
  7. public class DemandManageDetailBo extends DemandManageListBo {
  8. private Integer industryCategoryA;
  9. private Integer industryCategoryB;
  10. private String problemDes;
  11. private String technicalRequirements;
  12. private String pictureUrl;
  13. private String textFileUrl;
  14. private String videoUrl;
  15. private BigDecimal budgetCost;
  16. private String fixedCycle;
  17. private Integer peopleNumber;
  18. private String fixedScheme;
  19. private BigDecimal costEscrow;
  20. private String employerId;
  21. private String address;
  22. private String contactsName;
  23. private String mobile;
  24. private String mailbox;
  25. private String contacts;
  26. private String employerAddress;
  27. private String employerContactsMobile;
  28. private String employerContactsMailbox;
  29. private String coverImg;
  30. public String getEmployerAddress() {
  31. return employerAddress;
  32. }
  33. public void setEmployerAddress(String employerAddress) {
  34. this.employerAddress = employerAddress;
  35. }
  36. public String getEmployerContactsMobile() {
  37. return employerContactsMobile;
  38. }
  39. public void setEmployerContactsMobile(String employerContactsMobile) {
  40. this.employerContactsMobile = employerContactsMobile;
  41. }
  42. public String getEmployerContactsMailbox() {
  43. return employerContactsMailbox;
  44. }
  45. public void setEmployerContactsMailbox(String employerContactsMailbox) {
  46. this.employerContactsMailbox = employerContactsMailbox;
  47. }
  48. @JsonFormat(shape = Shape.STRING)
  49. public String getContacts() {
  50. return contacts;
  51. }
  52. public void setContacts(String contacts) {
  53. this.contacts = contacts;
  54. }
  55. public Integer getIndustryCategoryA() {
  56. return industryCategoryA;
  57. }
  58. public void setIndustryCategoryA(Integer industryCategoryA) {
  59. this.industryCategoryA = industryCategoryA;
  60. }
  61. public Integer getIndustryCategoryB() {
  62. return industryCategoryB;
  63. }
  64. public void setIndustryCategoryB(Integer industryCategoryB) {
  65. this.industryCategoryB = industryCategoryB;
  66. }
  67. public String getProblemDes() {
  68. return problemDes;
  69. }
  70. public void setProblemDes(String problemDes) {
  71. this.problemDes = problemDes;
  72. }
  73. public String getTechnicalRequirements() {
  74. return technicalRequirements;
  75. }
  76. public void setTechnicalRequirements(String technicalRequirements) {
  77. this.technicalRequirements = technicalRequirements;
  78. }
  79. public String getPictureUrl() {
  80. return pictureUrl;
  81. }
  82. public void setPictureUrl(String pictureUrl) {
  83. this.pictureUrl = pictureUrl;
  84. }
  85. public String getTextFileUrl() {
  86. return textFileUrl;
  87. }
  88. public void setTextFileUrl(String textFileUrl) {
  89. this.textFileUrl = textFileUrl;
  90. }
  91. public String getVideoUrl() {
  92. return videoUrl;
  93. }
  94. public void setVideoUrl(String videoUrl) {
  95. this.videoUrl = videoUrl;
  96. }
  97. public BigDecimal getBudgetCost() {
  98. return budgetCost;
  99. }
  100. public void setBudgetCost(BigDecimal budgetCost) {
  101. this.budgetCost = budgetCost;
  102. }
  103. public String getFixedCycle() {
  104. return fixedCycle;
  105. }
  106. public void setFixedCycle(String fixedCycle) {
  107. this.fixedCycle = fixedCycle;
  108. }
  109. public Integer getPeopleNumber() {
  110. return peopleNumber;
  111. }
  112. public void setPeopleNumber(Integer peopleNumber) {
  113. this.peopleNumber = peopleNumber;
  114. }
  115. public String getFixedScheme() {
  116. return fixedScheme;
  117. }
  118. public void setFixedScheme(String fixedScheme) {
  119. this.fixedScheme = fixedScheme;
  120. }
  121. public BigDecimal getCostEscrow() {
  122. return costEscrow;
  123. }
  124. public void setCostEscrow(BigDecimal costEscrow) {
  125. this.costEscrow = costEscrow;
  126. }
  127. public String getEmployerId() {
  128. return employerId;
  129. }
  130. public void setEmployerId(String employerId) {
  131. this.employerId = employerId;
  132. }
  133. public String getAddress() {
  134. return address;
  135. }
  136. public void setAddress(String address) {
  137. this.address = address;
  138. }
  139. public String getContactsName() {
  140. return contactsName;
  141. }
  142. public void setContactsName(String contactsName) {
  143. this.contactsName = contactsName;
  144. }
  145. public String getMobile() {
  146. return mobile;
  147. }
  148. public void setMobile(String mobile) {
  149. this.mobile = mobile;
  150. }
  151. public String getMailbox() {
  152. return mailbox;
  153. }
  154. public void setMailbox(String mailbox) {
  155. this.mailbox = mailbox;
  156. }
  157. public String getCoverImg() {
  158. return coverImg;
  159. }
  160. public void setCoverImg(String coverImg) {
  161. this.coverImg = coverImg;
  162. }
  163. }