TaskDetails.java 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232
  1. package com.goafanti.common.model;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * 项目申报详情(TaskDetails)实体类
  8. *
  9. * @author makejava
  10. * @since 2025-02-08 09:39:03
  11. */
  12. public class TaskDetails implements Serializable {
  13. private static final long serialVersionUID = 763281934554472027L;
  14. private Integer id;
  15. /**
  16. * 项目编号
  17. */
  18. private Integer tid;
  19. /**
  20. * 用户ID
  21. */
  22. private String uid;
  23. /**
  24. * 业务负责人
  25. */
  26. private String taskName;
  27. /**
  28. * 项目负责人
  29. */
  30. private String projectName;
  31. /**
  32. * 技术咨询师
  33. */
  34. private String technologyName;
  35. /**
  36. * 财税咨询师
  37. */
  38. private String financeTaxationName;
  39. /**
  40. * 上年度年份
  41. */
  42. private Integer lastYear;
  43. /**
  44. * 上年度年度销售额
  45. */
  46. private BigDecimal lastRdSalesAmount;
  47. /**
  48. * 上年度高新研发预算
  49. */
  50. private BigDecimal lastRdBudget;
  51. /**
  52. * 上年度年份
  53. */
  54. private Integer beforeLastYear;
  55. /**
  56. * 上年度年度销售额
  57. */
  58. private BigDecimal beforeLastRdSalesAmount;
  59. /**
  60. * 上年度高新研发预算
  61. */
  62. private BigDecimal beforeLastRdBudget;
  63. /**
  64. * 职工人数
  65. */
  66. private Integer workersNumber;
  67. /**
  68. * 科技人员数
  69. */
  70. private Integer technologyNumber;
  71. /**
  72. * 科技人员占比
  73. */
  74. private Double workersRate;
  75. /**
  76. * 研发立项数
  77. */
  78. private Integer projectApprovalNumber;
  79. /**
  80. * 年度研发预算
  81. */
  82. private BigDecimal rdBudget;
  83. /**
  84. * 年度研发预算占比
  85. */
  86. private Double rdBudgetRate;
  87. /**
  88. * 三年研发预算占比
  89. */
  90. private Double threeYearsRdBudgetRate;
  91. /**
  92. * 年度销售额
  93. */
  94. private BigDecimal rdSalesAmount;
  95. /**
  96. * 数据周期 0=第一季度,1=上半年,2=前三季度,3=全年
  97. */
  98. private Integer dataCycle;
  99. /**
  100. * 实际销售额
  101. */
  102. private BigDecimal actualSalesAmount;
  103. /**
  104. * 实际立项RD数
  105. */
  106. private Integer actualRdNumber;
  107. /**
  108. * 实际委外数
  109. */
  110. private Integer actualOutsourcingNumber;
  111. /**
  112. * 实际合作项目数
  113. */
  114. private Integer actualCooperateNumber;
  115. /**
  116. * 实际技术合同登记数
  117. */
  118. private Integer actualRegistrationNumber;
  119. /**
  120. * 实际归集研发费用
  121. */
  122. private BigDecimal actualRdAmount;
  123. /**
  124. * 年度研发预算占比
  125. */
  126. private Double actualRdRate;
  127. /**
  128. * 三年研发预算占比
  129. */
  130. private Double threeYearsActualRdRate;
  131. /**
  132. * 研发预算完成进度
  133. */
  134. private Double rdCompletionProgress;
  135. /**
  136. * 火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项
  137. */
  138. private Integer torchStatus;
  139. /**
  140. * 高企年报火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项
  141. */
  142. private Integer chStatus;
  143. /**
  144. * 统计年报 0=其他,1=待完成,2=已完成,3=合同无此项
  145. */
  146. private Integer statisticsStatus;
  147. /**
  148. * 汇算清缴 0=其他,1=待完成,2=已完成,3=合同无此项
  149. */
  150. private Integer finalSettlementStatus;
  151. /**
  152. * 火炬统计其他说明
  153. */
  154. private String torchOther;
  155. /**
  156. * 高企年报火炬统计其他说明
  157. */
  158. private String chOther;
  159. /**
  160. * 统计年报其他说明
  161. */
  162. private String statisticsOther;
  163. /**
  164. * 汇算清缴其他说明
  165. */
  166. private String finalSettlementOther;
  167. /**
  168. * 报表加扣数
  169. */
  170. private Integer reportFormsRdNumber;
  171. /**
  172. * 知识产权加扣费用
  173. */
  174. private BigDecimal intellectualPropertyAmount;
  175. /**
  176. * 报表扣研发金额
  177. */
  178. private BigDecimal reportRdAmount;
  179. /**
  180. * 研发准备金备案 0=其他,1=待完成,2=已完成,3=合同无此项
  181. */
  182. private Integer rdReservesStatus;
  183. /**
  184. * 研发准备金备其他说明
  185. */
  186. private String rdReservesOther;
  187. /**
  188. * 研发奖补申请 0=其他,1=待完成,2=已完成,3=合同无此项
  189. */
  190. private Integer rdAwardCompensationStatus;
  191. /**
  192. * 研发准备金备其他说明
  193. */
  194. private String rdAwardCompensationOther;
  195. /**
  196. * 研发奖补-申请金额
  197. */
  198. private BigDecimal rdApplicationFee;
  199. /**
  200. * 研发奖补-公示金额
  201. */
  202. private BigDecimal rdAnnouncementAmount;
  203. /**
  204. * 研发奖补-公示金额-其他
  205. */
  206. private String rdAnnouncementOther;
  207. /**
  208. * 加扣备查交付 0=其他,1=待完成,2=已完成,3=合同无此项
  209. */
  210. private Integer adDeliverStatus;
  211. /**
  212. * 加扣备查交付其他说明
  213. */
  214. private String adDeliverOther;
  215. /**
  216. * 加扣备查交付归档 0=否,1=是
  217. */
  218. private Integer adDeliverFinish;
  219. /**
  220. * 高新备查交付 0=其他,1=待完成,2=已完成,3=合同无此项
  221. */
  222. private Integer htDeliverStatus;
  223. /**
  224. * 高新加扣备查交付其他说明
  225. */
  226. private String htDeliverOther;
  227. /**
  228. * 高新加扣备查交付归档 0=否,1=是
  229. */
  230. private Integer htDeliverFinish;
  231. /**
  232. * 召开上年度总结与本年工作计划会议 0=其他,1=待完成,2=已完成,3=合同无此项
  233. */
  234. private Integer closeMeetingStatus;
  235. /**
  236. * 召开上年度总结与本年工作计划会议其他说明
  237. */
  238. private String closeMeetingOther;
  239. /**
  240. * 阶段性汇报 1=月度,2=季度
  241. */
  242. private Integer phasedType;
  243. /**
  244. * 阶段性汇报 1,2,3=选取1月到3月
  245. */
  246. private String phasedContent;
  247. /**
  248. * 立项资料编写数
  249. */
  250. private Integer projectApprovalWriteNumber;
  251. /**
  252. * 立项资料编写完成率
  253. */
  254. private Double projectApprovalWriteRate;
  255. /**
  256. * 加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项
  257. */
  258. private Integer adPrepareJulyStatus;
  259. /**
  260. * 加扣预申报七月其他说明
  261. */
  262. private String adPrepareJulyOther;
  263. /**
  264. * 加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项
  265. */
  266. private Integer adPrepareOctoberStatus;
  267. /**
  268. * 加扣预申报十月其他说明
  269. */
  270. private String adPrepareOctoberOther;
  271. /**
  272. * 知识产权发明专利申报数
  273. */
  274. private Integer ipInventionPatentDeclare;
  275. /**
  276. * 当年知识产权发明专利授权数
  277. */
  278. private Integer ipInventionPatentAuthorize;
  279. /**
  280. * 累计知识产权发明专利授权数
  281. */
  282. private Integer ipInventionPatentAuthorizeCount;
  283. /**
  284. * 知识产权实用新型申报数
  285. */
  286. private Integer ipUtilityModelDeclare;
  287. /**
  288. * 当年知识产权实用新型授权数
  289. */
  290. private Integer ipUtilityModelAuthorize;
  291. /**
  292. * 累计知识产权实用新型授权数
  293. */
  294. private Integer ipUtilityModelAuthorizeCount;
  295. /**
  296. * 知识产权软著申报数
  297. */
  298. private Integer ipSoftwareWorksDeclare;
  299. /**
  300. * 当年知识产权软著授权数
  301. */
  302. private Integer ipSoftwareWorksAuthorize;
  303. /**
  304. * 累计知识产权软著授权数
  305. */
  306. private Integer ipSoftwareWorksAuthorizeCount;
  307. /**
  308. * 知识产权高新数
  309. */
  310. private Integer ipHt;
  311. /**
  312. * 知识产权高新I数
  313. */
  314. private Integer ipHtI;
  315. /**
  316. * 知识产权高新II数
  317. */
  318. private Integer ipHtIi;
  319. /**
  320. * 委外开发项目数
  321. */
  322. private Integer outsourcingDev;
  323. /**
  324. * 技术开发合同登记数
  325. */
  326. private Integer contractRegistration;
  327. /**
  328. * 公出约定次数
  329. */
  330. private Integer publicReleaseStipulation;
  331. /**
  332. * 公出实际次数
  333. */
  334. private Integer publicReleaseActual;
  335. /**
  336. * 培训约定次数
  337. */
  338. private Integer trainingStipulation;
  339. /**
  340. * 培训实际次数
  341. */
  342. private Integer trainingActual;
  343. /**
  344. * 培训其他说明
  345. */
  346. private String trainingOther;
  347. /**
  348. * 高新认定评价估分
  349. */
  350. private Integer htScore;
  351. /**
  352. * 高新认定评申报批次
  353. */
  354. private Integer htBatch;
  355. /**
  356. * 高新认定重点关注 0=否,1=是
  357. */
  358. private Integer htFocus;
  359. /**
  360. * 网上系统提交 0=其他,1=待完成,2=已完成,3=合同无此项
  361. */
  362. private Integer webSubmit;
  363. /**
  364. * 网上系统提交其他说明
  365. */
  366. private String webSubmitOther;
  367. /**
  368. * 纸质材料提交 0=其他,1=待完成,2=已完成,3=合同无此项
  369. */
  370. private Integer paperSubmit;
  371. /**
  372. * 纸质材料提交其他说明
  373. */
  374. private String paperSubmitOther;
  375. /**
  376. * 评审省级 0=淘汰,1=公示
  377. */
  378. private Integer reviewProvince;
  379. /**
  380. * 评审国家级 0=淘汰,1=公示
  381. */
  382. private Integer reviewCountry;
  383. /**
  384. * 评审省级序号
  385. */
  386. private Integer reviewProvinceNumber;
  387. /**
  388. * 评审国家级高企编号
  389. */
  390. private Integer reviewCountryNumber;
  391. /**
  392. * 备注说明
  393. */
  394. private String remarks;
  395. /**
  396. * 更新时间
  397. */
  398. private Date updateTime;
  399. /**
  400. * 下载/打印时间
  401. */
  402. private Date downloadTime;
  403. /**
  404. * 创建时间
  405. */
  406. private Date createTime;
  407. /**
  408. * 会员等级
  409. */
  410. private Integer memberLvl;
  411. /**
  412. * 项目负责人编号
  413. */
  414. private String projectId;
  415. public Integer getId() {
  416. return id;
  417. }
  418. public void setId(Integer id) {
  419. this.id = id;
  420. }
  421. public Integer getTid() {
  422. return tid;
  423. }
  424. public void setTid(Integer tid) {
  425. this.tid = tid;
  426. }
  427. public String getUid() {
  428. return uid;
  429. }
  430. public void setUid(String uid) {
  431. this.uid = uid;
  432. }
  433. public String getTaskName() {
  434. return taskName;
  435. }
  436. public void setTaskName(String taskName) {
  437. this.taskName = taskName;
  438. }
  439. public String getProjectName() {
  440. return projectName;
  441. }
  442. public void setProjectName(String projectName) {
  443. this.projectName = projectName;
  444. }
  445. public String getTechnologyName() {
  446. return technologyName;
  447. }
  448. public void setTechnologyName(String technologyName) {
  449. this.technologyName = technologyName;
  450. }
  451. public String getFinanceTaxationName() {
  452. return financeTaxationName;
  453. }
  454. public void setFinanceTaxationName(String financeTaxationName) {
  455. this.financeTaxationName = financeTaxationName;
  456. }
  457. public Integer getLastYear() {
  458. return lastYear;
  459. }
  460. public void setLastYear(Integer lastYear) {
  461. this.lastYear = lastYear;
  462. }
  463. public BigDecimal getLastRdSalesAmount() {
  464. return lastRdSalesAmount;
  465. }
  466. public void setLastRdSalesAmount(BigDecimal lastRdSalesAmount) {
  467. this.lastRdSalesAmount = lastRdSalesAmount;
  468. }
  469. public BigDecimal getLastRdBudget() {
  470. return lastRdBudget;
  471. }
  472. public void setLastRdBudget(BigDecimal lastRdBudget) {
  473. this.lastRdBudget = lastRdBudget;
  474. }
  475. public Integer getBeforeLastYear() {
  476. return beforeLastYear;
  477. }
  478. public void setBeforeLastYear(Integer beforeLastYear) {
  479. this.beforeLastYear = beforeLastYear;
  480. }
  481. public BigDecimal getBeforeLastRdSalesAmount() {
  482. return beforeLastRdSalesAmount;
  483. }
  484. public void setBeforeLastRdSalesAmount(BigDecimal beforeLastRdSalesAmount) {
  485. this.beforeLastRdSalesAmount = beforeLastRdSalesAmount;
  486. }
  487. public BigDecimal getBeforeLastRdBudget() {
  488. return beforeLastRdBudget;
  489. }
  490. public void setBeforeLastRdBudget(BigDecimal beforeLastRdBudget) {
  491. this.beforeLastRdBudget = beforeLastRdBudget;
  492. }
  493. public Integer getWorkersNumber() {
  494. return workersNumber;
  495. }
  496. public void setWorkersNumber(Integer workersNumber) {
  497. this.workersNumber = workersNumber;
  498. }
  499. public Integer getTechnologyNumber() {
  500. return technologyNumber;
  501. }
  502. public void setTechnologyNumber(Integer technologyNumber) {
  503. this.technologyNumber = technologyNumber;
  504. }
  505. public Double getWorkersRate() {
  506. return workersRate;
  507. }
  508. public void setWorkersRate(Double workersRate) {
  509. this.workersRate = workersRate;
  510. }
  511. public Integer getProjectApprovalNumber() {
  512. return projectApprovalNumber;
  513. }
  514. public void setProjectApprovalNumber(Integer projectApprovalNumber) {
  515. this.projectApprovalNumber = projectApprovalNumber;
  516. }
  517. public BigDecimal getRdBudget() {
  518. return rdBudget;
  519. }
  520. public void setRdBudget(BigDecimal rdBudget) {
  521. this.rdBudget = rdBudget;
  522. }
  523. public Double getRdBudgetRate() {
  524. return rdBudgetRate;
  525. }
  526. public void setRdBudgetRate(Double rdBudgetRate) {
  527. this.rdBudgetRate = rdBudgetRate;
  528. }
  529. public Double getThreeYearsRdBudgetRate() {
  530. return threeYearsRdBudgetRate;
  531. }
  532. public void setThreeYearsRdBudgetRate(Double threeYearsRdBudgetRate) {
  533. this.threeYearsRdBudgetRate = threeYearsRdBudgetRate;
  534. }
  535. public BigDecimal getRdSalesAmount() {
  536. return rdSalesAmount;
  537. }
  538. public void setRdSalesAmount(BigDecimal rdSalesAmount) {
  539. this.rdSalesAmount = rdSalesAmount;
  540. }
  541. public Integer getDataCycle() {
  542. return dataCycle;
  543. }
  544. public void setDataCycle(Integer dataCycle) {
  545. this.dataCycle = dataCycle;
  546. }
  547. public BigDecimal getActualSalesAmount() {
  548. return actualSalesAmount;
  549. }
  550. public void setActualSalesAmount(BigDecimal actualSalesAmount) {
  551. this.actualSalesAmount = actualSalesAmount;
  552. }
  553. public Integer getActualRdNumber() {
  554. return actualRdNumber;
  555. }
  556. public void setActualRdNumber(Integer actualRdNumber) {
  557. this.actualRdNumber = actualRdNumber;
  558. }
  559. public Integer getActualOutsourcingNumber() {
  560. return actualOutsourcingNumber;
  561. }
  562. public void setActualOutsourcingNumber(Integer actualOutsourcingNumber) {
  563. this.actualOutsourcingNumber = actualOutsourcingNumber;
  564. }
  565. public Integer getActualCooperateNumber() {
  566. return actualCooperateNumber;
  567. }
  568. public void setActualCooperateNumber(Integer actualCooperateNumber) {
  569. this.actualCooperateNumber = actualCooperateNumber;
  570. }
  571. public Integer getActualRegistrationNumber() {
  572. return actualRegistrationNumber;
  573. }
  574. public void setActualRegistrationNumber(Integer actualRegistrationNumber) {
  575. this.actualRegistrationNumber = actualRegistrationNumber;
  576. }
  577. public BigDecimal getActualRdAmount() {
  578. return actualRdAmount;
  579. }
  580. public void setActualRdAmount(BigDecimal actualRdAmount) {
  581. this.actualRdAmount = actualRdAmount;
  582. }
  583. public Double getActualRdRate() {
  584. return actualRdRate;
  585. }
  586. public void setActualRdRate(Double actualRdRate) {
  587. this.actualRdRate = actualRdRate;
  588. }
  589. public Double getThreeYearsActualRdRate() {
  590. return threeYearsActualRdRate;
  591. }
  592. public void setThreeYearsActualRdRate(Double threeYearsActualRdRate) {
  593. this.threeYearsActualRdRate = threeYearsActualRdRate;
  594. }
  595. public Double getRdCompletionProgress() {
  596. return rdCompletionProgress;
  597. }
  598. public void setRdCompletionProgress(Double rdCompletionProgress) {
  599. this.rdCompletionProgress = rdCompletionProgress;
  600. }
  601. public Integer getTorchStatus() {
  602. return torchStatus;
  603. }
  604. public void setTorchStatus(Integer torchStatus) {
  605. this.torchStatus = torchStatus;
  606. }
  607. public Integer getChStatus() {
  608. return chStatus;
  609. }
  610. public void setChStatus(Integer chStatus) {
  611. this.chStatus = chStatus;
  612. }
  613. public Integer getStatisticsStatus() {
  614. return statisticsStatus;
  615. }
  616. public void setStatisticsStatus(Integer statisticsStatus) {
  617. this.statisticsStatus = statisticsStatus;
  618. }
  619. public Integer getFinalSettlementStatus() {
  620. return finalSettlementStatus;
  621. }
  622. public void setFinalSettlementStatus(Integer finalSettlementStatus) {
  623. this.finalSettlementStatus = finalSettlementStatus;
  624. }
  625. public String getTorchOther() {
  626. return torchOther;
  627. }
  628. public void setTorchOther(String torchOther) {
  629. this.torchOther = torchOther;
  630. }
  631. public String getChOther() {
  632. return chOther;
  633. }
  634. public void setChOther(String chOther) {
  635. this.chOther = chOther;
  636. }
  637. public String getStatisticsOther() {
  638. return statisticsOther;
  639. }
  640. public void setStatisticsOther(String statisticsOther) {
  641. this.statisticsOther = statisticsOther;
  642. }
  643. public String getFinalSettlementOther() {
  644. return finalSettlementOther;
  645. }
  646. public void setFinalSettlementOther(String finalSettlementOther) {
  647. this.finalSettlementOther = finalSettlementOther;
  648. }
  649. public Integer getReportFormsRdNumber() {
  650. return reportFormsRdNumber;
  651. }
  652. public void setReportFormsRdNumber(Integer reportFormsRdNumber) {
  653. this.reportFormsRdNumber = reportFormsRdNumber;
  654. }
  655. public BigDecimal getIntellectualPropertyAmount() {
  656. return intellectualPropertyAmount;
  657. }
  658. public void setIntellectualPropertyAmount(BigDecimal intellectualPropertyAmount) {
  659. this.intellectualPropertyAmount = intellectualPropertyAmount;
  660. }
  661. public BigDecimal getReportRdAmount() {
  662. return reportRdAmount;
  663. }
  664. public void setReportRdAmount(BigDecimal reportRdAmount) {
  665. this.reportRdAmount = reportRdAmount;
  666. }
  667. public Integer getRdReservesStatus() {
  668. return rdReservesStatus;
  669. }
  670. public void setRdReservesStatus(Integer rdReservesStatus) {
  671. this.rdReservesStatus = rdReservesStatus;
  672. }
  673. public String getRdReservesOther() {
  674. return rdReservesOther;
  675. }
  676. public void setRdReservesOther(String rdReservesOther) {
  677. this.rdReservesOther = rdReservesOther;
  678. }
  679. public Integer getRdAwardCompensationStatus() {
  680. return rdAwardCompensationStatus;
  681. }
  682. public void setRdAwardCompensationStatus(Integer rdAwardCompensationStatus) {
  683. this.rdAwardCompensationStatus = rdAwardCompensationStatus;
  684. }
  685. public String getRdAwardCompensationOther() {
  686. return rdAwardCompensationOther;
  687. }
  688. public void setRdAwardCompensationOther(String rdAwardCompensationOther) {
  689. this.rdAwardCompensationOther = rdAwardCompensationOther;
  690. }
  691. public BigDecimal getRdApplicationFee() {
  692. return rdApplicationFee;
  693. }
  694. public void setRdApplicationFee(BigDecimal rdApplicationFee) {
  695. this.rdApplicationFee = rdApplicationFee;
  696. }
  697. public BigDecimal getRdAnnouncementAmount() {
  698. return rdAnnouncementAmount;
  699. }
  700. public void setRdAnnouncementAmount(BigDecimal rdAnnouncementAmount) {
  701. this.rdAnnouncementAmount = rdAnnouncementAmount;
  702. }
  703. public String getRdAnnouncementOther() {
  704. return rdAnnouncementOther;
  705. }
  706. public void setRdAnnouncementOther(String rdAnnouncementOther) {
  707. this.rdAnnouncementOther = rdAnnouncementOther;
  708. }
  709. public Integer getAdDeliverStatus() {
  710. return adDeliverStatus;
  711. }
  712. public void setAdDeliverStatus(Integer adDeliverStatus) {
  713. this.adDeliverStatus = adDeliverStatus;
  714. }
  715. public String getAdDeliverOther() {
  716. return adDeliverOther;
  717. }
  718. public void setAdDeliverOther(String adDeliverOther) {
  719. this.adDeliverOther = adDeliverOther;
  720. }
  721. public Integer getAdDeliverFinish() {
  722. return adDeliverFinish;
  723. }
  724. public void setAdDeliverFinish(Integer adDeliverFinish) {
  725. this.adDeliverFinish = adDeliverFinish;
  726. }
  727. public Integer getHtDeliverStatus() {
  728. return htDeliverStatus;
  729. }
  730. public void setHtDeliverStatus(Integer htDeliverStatus) {
  731. this.htDeliverStatus = htDeliverStatus;
  732. }
  733. public String getHtDeliverOther() {
  734. return htDeliverOther;
  735. }
  736. public void setHtDeliverOther(String htDeliverOther) {
  737. this.htDeliverOther = htDeliverOther;
  738. }
  739. public Integer getHtDeliverFinish() {
  740. return htDeliverFinish;
  741. }
  742. public void setHtDeliverFinish(Integer htDeliverFinish) {
  743. this.htDeliverFinish = htDeliverFinish;
  744. }
  745. public Integer getCloseMeetingStatus() {
  746. return closeMeetingStatus;
  747. }
  748. public void setCloseMeetingStatus(Integer closeMeetingStatus) {
  749. this.closeMeetingStatus = closeMeetingStatus;
  750. }
  751. public String getCloseMeetingOther() {
  752. return closeMeetingOther;
  753. }
  754. public void setCloseMeetingOther(String closeMeetingOther) {
  755. this.closeMeetingOther = closeMeetingOther;
  756. }
  757. public Integer getPhasedType() {
  758. return phasedType;
  759. }
  760. public void setPhasedType(Integer phasedType) {
  761. this.phasedType = phasedType;
  762. }
  763. public String getPhasedContent() {
  764. return phasedContent;
  765. }
  766. public void setPhasedContent(String phasedContent) {
  767. this.phasedContent = phasedContent;
  768. }
  769. public Integer getProjectApprovalWriteNumber() {
  770. return projectApprovalWriteNumber;
  771. }
  772. public void setProjectApprovalWriteNumber(Integer projectApprovalWriteNumber) {
  773. this.projectApprovalWriteNumber = projectApprovalWriteNumber;
  774. }
  775. public Double getProjectApprovalWriteRate() {
  776. return projectApprovalWriteRate;
  777. }
  778. public void setProjectApprovalWriteRate(Double projectApprovalWriteRate) {
  779. this.projectApprovalWriteRate = projectApprovalWriteRate;
  780. }
  781. public Integer getAdPrepareJulyStatus() {
  782. return adPrepareJulyStatus;
  783. }
  784. public void setAdPrepareJulyStatus(Integer adPrepareJulyStatus) {
  785. this.adPrepareJulyStatus = adPrepareJulyStatus;
  786. }
  787. public String getAdPrepareJulyOther() {
  788. return adPrepareJulyOther;
  789. }
  790. public void setAdPrepareJulyOther(String adPrepareJulyOther) {
  791. this.adPrepareJulyOther = adPrepareJulyOther;
  792. }
  793. public Integer getAdPrepareOctoberStatus() {
  794. return adPrepareOctoberStatus;
  795. }
  796. public void setAdPrepareOctoberStatus(Integer adPrepareOctoberStatus) {
  797. this.adPrepareOctoberStatus = adPrepareOctoberStatus;
  798. }
  799. public String getAdPrepareOctoberOther() {
  800. return adPrepareOctoberOther;
  801. }
  802. public void setAdPrepareOctoberOther(String adPrepareOctoberOther) {
  803. this.adPrepareOctoberOther = adPrepareOctoberOther;
  804. }
  805. public Integer getIpInventionPatentDeclare() {
  806. return ipInventionPatentDeclare;
  807. }
  808. public void setIpInventionPatentDeclare(Integer ipInventionPatentDeclare) {
  809. this.ipInventionPatentDeclare = ipInventionPatentDeclare;
  810. }
  811. public Integer getIpInventionPatentAuthorize() {
  812. return ipInventionPatentAuthorize;
  813. }
  814. public void setIpInventionPatentAuthorize(Integer ipInventionPatentAuthorize) {
  815. this.ipInventionPatentAuthorize = ipInventionPatentAuthorize;
  816. }
  817. public Integer getIpInventionPatentAuthorizeCount() {
  818. return ipInventionPatentAuthorizeCount;
  819. }
  820. public void setIpInventionPatentAuthorizeCount(Integer ipInventionPatentAuthorizeCount) {
  821. this.ipInventionPatentAuthorizeCount = ipInventionPatentAuthorizeCount;
  822. }
  823. public Integer getIpUtilityModelDeclare() {
  824. return ipUtilityModelDeclare;
  825. }
  826. public void setIpUtilityModelDeclare(Integer ipUtilityModelDeclare) {
  827. this.ipUtilityModelDeclare = ipUtilityModelDeclare;
  828. }
  829. public Integer getIpUtilityModelAuthorize() {
  830. return ipUtilityModelAuthorize;
  831. }
  832. public void setIpUtilityModelAuthorize(Integer ipUtilityModelAuthorize) {
  833. this.ipUtilityModelAuthorize = ipUtilityModelAuthorize;
  834. }
  835. public Integer getIpUtilityModelAuthorizeCount() {
  836. return ipUtilityModelAuthorizeCount;
  837. }
  838. public void setIpUtilityModelAuthorizeCount(Integer ipUtilityModelAuthorizeCount) {
  839. this.ipUtilityModelAuthorizeCount = ipUtilityModelAuthorizeCount;
  840. }
  841. public Integer getIpSoftwareWorksDeclare() {
  842. return ipSoftwareWorksDeclare;
  843. }
  844. public void setIpSoftwareWorksDeclare(Integer ipSoftwareWorksDeclare) {
  845. this.ipSoftwareWorksDeclare = ipSoftwareWorksDeclare;
  846. }
  847. public Integer getIpSoftwareWorksAuthorize() {
  848. return ipSoftwareWorksAuthorize;
  849. }
  850. public void setIpSoftwareWorksAuthorize(Integer ipSoftwareWorksAuthorize) {
  851. this.ipSoftwareWorksAuthorize = ipSoftwareWorksAuthorize;
  852. }
  853. public Integer getIpSoftwareWorksAuthorizeCount() {
  854. return ipSoftwareWorksAuthorizeCount;
  855. }
  856. public void setIpSoftwareWorksAuthorizeCount(Integer ipSoftwareWorksAuthorizeCount) {
  857. this.ipSoftwareWorksAuthorizeCount = ipSoftwareWorksAuthorizeCount;
  858. }
  859. public Integer getIpHt() {
  860. return ipHt;
  861. }
  862. public void setIpHt(Integer ipHt) {
  863. this.ipHt = ipHt;
  864. }
  865. public Integer getIpHtI() {
  866. return ipHtI;
  867. }
  868. public void setIpHtI(Integer ipHtI) {
  869. this.ipHtI = ipHtI;
  870. }
  871. public Integer getIpHtIi() {
  872. return ipHtIi;
  873. }
  874. public void setIpHtIi(Integer ipHtIi) {
  875. this.ipHtIi = ipHtIi;
  876. }
  877. public Integer getOutsourcingDev() {
  878. return outsourcingDev;
  879. }
  880. public void setOutsourcingDev(Integer outsourcingDev) {
  881. this.outsourcingDev = outsourcingDev;
  882. }
  883. public Integer getContractRegistration() {
  884. return contractRegistration;
  885. }
  886. public void setContractRegistration(Integer contractRegistration) {
  887. this.contractRegistration = contractRegistration;
  888. }
  889. public Integer getPublicReleaseStipulation() {
  890. return publicReleaseStipulation;
  891. }
  892. public void setPublicReleaseStipulation(Integer publicReleaseStipulation) {
  893. this.publicReleaseStipulation = publicReleaseStipulation;
  894. }
  895. public Integer getPublicReleaseActual() {
  896. return publicReleaseActual;
  897. }
  898. public void setPublicReleaseActual(Integer publicReleaseActual) {
  899. this.publicReleaseActual = publicReleaseActual;
  900. }
  901. public Integer getTrainingStipulation() {
  902. return trainingStipulation;
  903. }
  904. public void setTrainingStipulation(Integer trainingStipulation) {
  905. this.trainingStipulation = trainingStipulation;
  906. }
  907. public Integer getTrainingActual() {
  908. return trainingActual;
  909. }
  910. public void setTrainingActual(Integer trainingActual) {
  911. this.trainingActual = trainingActual;
  912. }
  913. public String getTrainingOther() {
  914. return trainingOther;
  915. }
  916. public void setTrainingOther(String trainingOther) {
  917. this.trainingOther = trainingOther;
  918. }
  919. public Integer getHtScore() {
  920. return htScore;
  921. }
  922. public void setHtScore(Integer htScore) {
  923. this.htScore = htScore;
  924. }
  925. public Integer getHtBatch() {
  926. return htBatch;
  927. }
  928. public void setHtBatch(Integer htBatch) {
  929. this.htBatch = htBatch;
  930. }
  931. public Integer getHtFocus() {
  932. return htFocus;
  933. }
  934. public void setHtFocus(Integer htFocus) {
  935. this.htFocus = htFocus;
  936. }
  937. public Integer getWebSubmit() {
  938. return webSubmit;
  939. }
  940. public void setWebSubmit(Integer webSubmit) {
  941. this.webSubmit = webSubmit;
  942. }
  943. public String getWebSubmitOther() {
  944. return webSubmitOther;
  945. }
  946. public void setWebSubmitOther(String webSubmitOther) {
  947. this.webSubmitOther = webSubmitOther;
  948. }
  949. public Integer getPaperSubmit() {
  950. return paperSubmit;
  951. }
  952. public void setPaperSubmit(Integer paperSubmit) {
  953. this.paperSubmit = paperSubmit;
  954. }
  955. public String getPaperSubmitOther() {
  956. return paperSubmitOther;
  957. }
  958. public void setPaperSubmitOther(String paperSubmitOther) {
  959. this.paperSubmitOther = paperSubmitOther;
  960. }
  961. public Integer getReviewProvince() {
  962. return reviewProvince;
  963. }
  964. public void setReviewProvince(Integer reviewProvince) {
  965. this.reviewProvince = reviewProvince;
  966. }
  967. public Integer getReviewCountry() {
  968. return reviewCountry;
  969. }
  970. public void setReviewCountry(Integer reviewCountry) {
  971. this.reviewCountry = reviewCountry;
  972. }
  973. public Integer getReviewProvinceNumber() {
  974. return reviewProvinceNumber;
  975. }
  976. public void setReviewProvinceNumber(Integer reviewProvinceNumber) {
  977. this.reviewProvinceNumber = reviewProvinceNumber;
  978. }
  979. public Integer getReviewCountryNumber() {
  980. return reviewCountryNumber;
  981. }
  982. public void setReviewCountryNumber(Integer reviewCountryNumber) {
  983. this.reviewCountryNumber = reviewCountryNumber;
  984. }
  985. public String getRemarks() {
  986. return remarks;
  987. }
  988. public void setRemarks(String remarks) {
  989. this.remarks = remarks;
  990. }
  991. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  992. public Date getUpdateTime() {
  993. return updateTime;
  994. }
  995. public void setUpdateTime(Date updateTime) {
  996. this.updateTime = updateTime;
  997. }
  998. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  999. public Date getDownloadTime() {
  1000. return downloadTime;
  1001. }
  1002. public void setDownloadTime(Date downloadTime) {
  1003. this.downloadTime = downloadTime;
  1004. }
  1005. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  1006. public Date getCreateTime() {
  1007. return createTime;
  1008. }
  1009. public void setCreateTime(Date createTime) {
  1010. this.createTime = createTime;
  1011. }
  1012. public Integer getMemberLvl() {
  1013. return memberLvl;
  1014. }
  1015. public void setMemberLvl(Integer memberLvl) {
  1016. this.memberLvl = memberLvl;
  1017. }
  1018. public String getProjectId() {
  1019. return projectId;
  1020. }
  1021. public void setProjectId(String projectId) {
  1022. this.projectId = projectId;
  1023. }
  1024. }