OrgActivity.java 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. import org.apache.commons.lang3.time.DateFormatUtils;
  4. import com.fasterxml.jackson.annotation.JsonIgnore;
  5. public class OrgActivity {
  6. private String id;
  7. private String uid;
  8. /**
  9. * 研发活动编号
  10. */
  11. private String activityNumber;
  12. /**
  13. * 研发活动名称
  14. */
  15. private String activityName;
  16. /**
  17. * 开始日期
  18. */
  19. private Date startDate;
  20. /**
  21. * 结束日期
  22. */
  23. private Date endDate;
  24. /**
  25. * 参与人员
  26. */
  27. private String participant;
  28. /**
  29. * 是否是内部立项
  30. */
  31. private Integer projectMode;
  32. /**
  33. * 技术领域1st select
  34. */
  35. private String technicalField1;
  36. /**
  37. * 技术领域2nd select
  38. */
  39. private String technicalField2;
  40. /**
  41. * 技术领域3rd select
  42. */
  43. private String technicalField3;
  44. /**
  45. * 技术来源
  46. */
  47. private Integer technicalSource;
  48. /**
  49. * 知识产权编号
  50. */
  51. private String intellectualPropertyNumber;
  52. /**
  53. * 研发经费总预算(万元)
  54. */
  55. private Integer budget;
  56. /**
  57. * 第一年研发经费支出(万元)
  58. */
  59. private Integer firstYearExpenditure;
  60. /**
  61. * 第二年研发经费支出(万元)
  62. */
  63. private Integer secondYearExpenditure;
  64. /**
  65. * 第三年研发经费支出(万元)
  66. */
  67. private Integer thirdYearExpenditure;
  68. /**
  69. * 目的及组织实施方式
  70. */
  71. private String implement;
  72. /**
  73. * 核心技术及创新点
  74. */
  75. private String technologyInnovation;
  76. /**
  77. * 取得的阶段性成果
  78. */
  79. private String achievement;
  80. /**
  81. * 立项证明材料URL
  82. */
  83. private String proofUrl;
  84. /**
  85. * 删除标记
  86. */
  87. private Integer deletedSign;
  88. public String getId() {
  89. return id;
  90. }
  91. public void setId(String id) {
  92. this.id = id;
  93. }
  94. public String getUid() {
  95. return uid;
  96. }
  97. public void setUid(String uid) {
  98. this.uid = uid;
  99. }
  100. public String getActivityNumber() {
  101. return activityNumber;
  102. }
  103. public void setActivityNumber(String activityNumber) {
  104. this.activityNumber = activityNumber;
  105. }
  106. public String getActivityName() {
  107. return activityName;
  108. }
  109. public void setActivityName(String activityName) {
  110. this.activityName = activityName;
  111. }
  112. public Date getStartDate() {
  113. return startDate;
  114. }
  115. public void setStartDate(Date startDate) {
  116. this.startDate = startDate;
  117. }
  118. public Date getEndDate() {
  119. return endDate;
  120. }
  121. public String getParticipant() {
  122. return participant;
  123. }
  124. public void setParticipant(String participant) {
  125. this.participant = participant;
  126. }
  127. public void setEndDate(Date endDate) {
  128. this.endDate = endDate;
  129. }
  130. public String getTechnicalField1() {
  131. return technicalField1;
  132. }
  133. public void setTechnicalField1(String technicalField1) {
  134. this.technicalField1 = technicalField1;
  135. }
  136. public String getTechnicalField2() {
  137. return technicalField2;
  138. }
  139. public void setTechnicalField2(String technicalField2) {
  140. this.technicalField2 = technicalField2;
  141. }
  142. public String getTechnicalField3() {
  143. return technicalField3;
  144. }
  145. public void setTechnicalField3(String technicalField3) {
  146. this.technicalField3 = technicalField3;
  147. }
  148. public Integer getTechnicalSource() {
  149. return technicalSource;
  150. }
  151. public void setTechnicalSource(Integer technicalSource) {
  152. this.technicalSource = technicalSource;
  153. }
  154. public String getIntellectualPropertyNumber() {
  155. return intellectualPropertyNumber;
  156. }
  157. public void setIntellectualPropertyNumber(String intellectualPropertyNumber) {
  158. this.intellectualPropertyNumber = intellectualPropertyNumber;
  159. }
  160. public Integer getBudget() {
  161. return budget;
  162. }
  163. public void setBudget(Integer budget) {
  164. this.budget = budget;
  165. }
  166. public Integer getFirstYearExpenditure() {
  167. return firstYearExpenditure;
  168. }
  169. public void setFirstYearExpenditure(Integer firstYearExpenditure) {
  170. this.firstYearExpenditure = firstYearExpenditure;
  171. }
  172. public Integer getSecondYearExpenditure() {
  173. return secondYearExpenditure;
  174. }
  175. public void setSecondYearExpenditure(Integer secondYearExpenditure) {
  176. this.secondYearExpenditure = secondYearExpenditure;
  177. }
  178. public Integer getThirdYearExpenditure() {
  179. return thirdYearExpenditure;
  180. }
  181. public void setThirdYearExpenditure(Integer thirdYearExpenditure) {
  182. this.thirdYearExpenditure = thirdYearExpenditure;
  183. }
  184. public String getImplement() {
  185. return implement;
  186. }
  187. public void setImplement(String implement) {
  188. this.implement = implement;
  189. }
  190. public String getTechnologyInnovation() {
  191. return technologyInnovation;
  192. }
  193. public void setTechnologyInnovation(String technologyInnovation) {
  194. this.technologyInnovation = technologyInnovation;
  195. }
  196. public String getAchievement() {
  197. return achievement;
  198. }
  199. public void setAchievement(String achievement) {
  200. this.achievement = achievement;
  201. }
  202. public Integer getProjectMode() {
  203. return projectMode;
  204. }
  205. public void setProjectMode(Integer projectMode) {
  206. this.projectMode = projectMode;
  207. }
  208. public String getProofUrl() {
  209. return proofUrl;
  210. }
  211. public void setProofUrl(String proofUrl) {
  212. this.proofUrl = proofUrl;
  213. }
  214. @JsonIgnore
  215. public Integer getDeletedSign() {
  216. return deletedSign;
  217. }
  218. public void setDeletedSign(Integer deletedSign) {
  219. this.deletedSign = deletedSign;
  220. }
  221. public String getStartDateFormattedDate(){
  222. if (this.startDate == null) {
  223. return null;
  224. } else {
  225. return DateFormatUtils.format(this.getStartDate(), "yyyy-MM-dd");
  226. }
  227. }
  228. public void setStartDateFormattedDate(String startDateFormattedDate){
  229. }
  230. public String getEndDateFormattedDate(){
  231. if (this.endDate == null) {
  232. return null;
  233. } else {
  234. return DateFormatUtils.format(this.getEndDate(), "yyyy-MM-dd");
  235. }
  236. }
  237. public void setEndDateFormattedDate(String endDateFormattedDate){
  238. }
  239. }