DemandManageDetailBo.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 Integer contacts;
  24. private String employerAddress;
  25. private String employerContactsMobile;
  26. private String employerContactsMailbox;
  27. public String getEmployerAddress() {
  28. return employerAddress;
  29. }
  30. public void setEmployerAddress(String employerAddress) {
  31. this.employerAddress = employerAddress;
  32. }
  33. public String getEmployerContactsMobile() {
  34. return employerContactsMobile;
  35. }
  36. public void setEmployerContactsMobile(String employerContactsMobile) {
  37. this.employerContactsMobile = employerContactsMobile;
  38. }
  39. public String getEmployerContactsMailbox() {
  40. return employerContactsMailbox;
  41. }
  42. public void setEmployerContactsMailbox(String employerContactsMailbox) {
  43. this.employerContactsMailbox = employerContactsMailbox;
  44. }
  45. @JsonFormat(shape = Shape.STRING)
  46. public Integer getContacts() {
  47. return contacts;
  48. }
  49. public void setContacts(Integer contacts) {
  50. this.contacts = contacts;
  51. }
  52. public Integer getIndustryCategoryA() {
  53. return industryCategoryA;
  54. }
  55. public void setIndustryCategoryA(Integer industryCategoryA) {
  56. this.industryCategoryA = industryCategoryA;
  57. }
  58. public Integer getIndustryCategoryB() {
  59. return industryCategoryB;
  60. }
  61. public void setIndustryCategoryB(Integer industryCategoryB) {
  62. this.industryCategoryB = industryCategoryB;
  63. }
  64. public String getProblemDes() {
  65. return problemDes;
  66. }
  67. public void setProblemDes(String problemDes) {
  68. this.problemDes = problemDes;
  69. }
  70. public String getTechnicalRequirements() {
  71. return technicalRequirements;
  72. }
  73. public void setTechnicalRequirements(String technicalRequirements) {
  74. this.technicalRequirements = technicalRequirements;
  75. }
  76. public String getPictureUrl() {
  77. return pictureUrl;
  78. }
  79. public void setPictureUrl(String pictureUrl) {
  80. this.pictureUrl = pictureUrl;
  81. }
  82. public String getTextFileUrl() {
  83. return textFileUrl;
  84. }
  85. public void setTextFileUrl(String textFileUrl) {
  86. this.textFileUrl = textFileUrl;
  87. }
  88. public String getVideoUrl() {
  89. return videoUrl;
  90. }
  91. public void setVideoUrl(String videoUrl) {
  92. this.videoUrl = videoUrl;
  93. }
  94. public BigDecimal getBudgetCost() {
  95. return budgetCost;
  96. }
  97. public void setBudgetCost(BigDecimal budgetCost) {
  98. this.budgetCost = budgetCost;
  99. }
  100. public String getFixedCycle() {
  101. return fixedCycle;
  102. }
  103. public void setFixedCycle(String fixedCycle) {
  104. this.fixedCycle = fixedCycle;
  105. }
  106. public Integer getPeopleNumber() {
  107. return peopleNumber;
  108. }
  109. public void setPeopleNumber(Integer peopleNumber) {
  110. this.peopleNumber = peopleNumber;
  111. }
  112. public String getFixedScheme() {
  113. return fixedScheme;
  114. }
  115. public void setFixedScheme(String fixedScheme) {
  116. this.fixedScheme = fixedScheme;
  117. }
  118. public BigDecimal getCostEscrow() {
  119. return costEscrow;
  120. }
  121. public void setCostEscrow(BigDecimal costEscrow) {
  122. this.costEscrow = costEscrow;
  123. }
  124. public String getEmployerId() {
  125. return employerId;
  126. }
  127. public void setEmployerId(String employerId) {
  128. this.employerId = employerId;
  129. }
  130. public String getAddress() {
  131. return address;
  132. }
  133. public void setAddress(String address) {
  134. this.address = address;
  135. }
  136. public String getContactsName() {
  137. return contactsName;
  138. }
  139. public void setContactsName(String contactsName) {
  140. this.contactsName = contactsName;
  141. }
  142. public String getMobile() {
  143. return mobile;
  144. }
  145. public void setMobile(String mobile) {
  146. this.mobile = mobile;
  147. }
  148. public String getMailbox() {
  149. return mailbox;
  150. }
  151. public void setMailbox(String mailbox) {
  152. this.mailbox = mailbox;
  153. }
  154. }