DemandManageDetailBo.java 4.3 KB

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