TaskDetailsLog.java 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305
  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. * 项目申报详情日志(TaskDetailsLog)实体类
  8. *
  9. * @author makejava
  10. * @since 2025-02-14 15:11:32
  11. */
  12. public class TaskDetailsLog implements Serializable {
  13. private static final long serialVersionUID = 419965485945349856L;
  14. private Integer id;
  15. /**
  16. * 用户ID
  17. */
  18. private String uid;
  19. /**
  20. * 项目进度编号
  21. */
  22. private Integer tdid;
  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 String reviewProvinceNumber;
  387. /**
  388. * 评审国家级高企编号
  389. */
  390. private String reviewCountryNumber;
  391. /**
  392. * 备注说明
  393. */
  394. private String remarks;
  395. /**
  396. * 修改人
  397. */
  398. private String aid;
  399. /**
  400. * 修改人名称
  401. */
  402. private String aname;
  403. /**
  404. * 创建时间
  405. */
  406. private Date createTime;
  407. /**
  408. * 会员等级
  409. */
  410. private Integer memberLvl;
  411. /**
  412. * 项目负责人编号
  413. */
  414. private String projectId;
  415. /**
  416. * 高新技术税收优惠政策检查
  417. */
  418. private String featureHt;
  419. /**
  420. * 加计扣除税收优惠政策检查
  421. */
  422. private String featureAd;
  423. /**
  424. * 税务常规检查
  425. */
  426. private String featureTr;
  427. /**
  428. * 税务对研发费用检查
  429. */
  430. private String featureTe;
  431. /**
  432. * 税务稽查
  433. */
  434. private String featureTi;
  435. /**
  436. * 其他
  437. */
  438. private String featureOther;
  439. public Integer getId() {
  440. return id;
  441. }
  442. public void setId(Integer id) {
  443. this.id = id;
  444. }
  445. public String getUid() {
  446. return uid;
  447. }
  448. public void setUid(String uid) {
  449. this.uid = uid;
  450. }
  451. public Integer getTdid() {
  452. return tdid;
  453. }
  454. public void setTdid(Integer tdid) {
  455. this.tdid = tdid;
  456. }
  457. public String getTaskName() {
  458. return taskName;
  459. }
  460. public void setTaskName(String taskName) {
  461. this.taskName = taskName;
  462. }
  463. public String getProjectName() {
  464. return projectName;
  465. }
  466. public void setProjectName(String projectName) {
  467. this.projectName = projectName;
  468. }
  469. public String getTechnologyName() {
  470. return technologyName;
  471. }
  472. public void setTechnologyName(String technologyName) {
  473. this.technologyName = technologyName;
  474. }
  475. public String getFinanceTaxationName() {
  476. return financeTaxationName;
  477. }
  478. public void setFinanceTaxationName(String financeTaxationName) {
  479. this.financeTaxationName = financeTaxationName;
  480. }
  481. public Integer getLastYear() {
  482. return lastYear;
  483. }
  484. public void setLastYear(Integer lastYear) {
  485. this.lastYear = lastYear;
  486. }
  487. public BigDecimal getLastRdSalesAmount() {
  488. return lastRdSalesAmount;
  489. }
  490. public void setLastRdSalesAmount(BigDecimal lastRdSalesAmount) {
  491. this.lastRdSalesAmount = lastRdSalesAmount;
  492. }
  493. public BigDecimal getLastRdBudget() {
  494. return lastRdBudget;
  495. }
  496. public void setLastRdBudget(BigDecimal lastRdBudget) {
  497. this.lastRdBudget = lastRdBudget;
  498. }
  499. public Integer getBeforeLastYear() {
  500. return beforeLastYear;
  501. }
  502. public void setBeforeLastYear(Integer beforeLastYear) {
  503. this.beforeLastYear = beforeLastYear;
  504. }
  505. public BigDecimal getBeforeLastRdSalesAmount() {
  506. return beforeLastRdSalesAmount;
  507. }
  508. public void setBeforeLastRdSalesAmount(BigDecimal beforeLastRdSalesAmount) {
  509. this.beforeLastRdSalesAmount = beforeLastRdSalesAmount;
  510. }
  511. public BigDecimal getBeforeLastRdBudget() {
  512. return beforeLastRdBudget;
  513. }
  514. public void setBeforeLastRdBudget(BigDecimal beforeLastRdBudget) {
  515. this.beforeLastRdBudget = beforeLastRdBudget;
  516. }
  517. public Integer getWorkersNumber() {
  518. return workersNumber;
  519. }
  520. public void setWorkersNumber(Integer workersNumber) {
  521. this.workersNumber = workersNumber;
  522. }
  523. public Integer getTechnologyNumber() {
  524. return technologyNumber;
  525. }
  526. public void setTechnologyNumber(Integer technologyNumber) {
  527. this.technologyNumber = technologyNumber;
  528. }
  529. public Double getWorkersRate() {
  530. return workersRate;
  531. }
  532. public void setWorkersRate(Double workersRate) {
  533. this.workersRate = workersRate;
  534. }
  535. public Integer getProjectApprovalNumber() {
  536. return projectApprovalNumber;
  537. }
  538. public void setProjectApprovalNumber(Integer projectApprovalNumber) {
  539. this.projectApprovalNumber = projectApprovalNumber;
  540. }
  541. public BigDecimal getRdBudget() {
  542. return rdBudget;
  543. }
  544. public void setRdBudget(BigDecimal rdBudget) {
  545. this.rdBudget = rdBudget;
  546. }
  547. public Double getRdBudgetRate() {
  548. return rdBudgetRate;
  549. }
  550. public void setRdBudgetRate(Double rdBudgetRate) {
  551. this.rdBudgetRate = rdBudgetRate;
  552. }
  553. public Double getThreeYearsRdBudgetRate() {
  554. return threeYearsRdBudgetRate;
  555. }
  556. public void setThreeYearsRdBudgetRate(Double threeYearsRdBudgetRate) {
  557. this.threeYearsRdBudgetRate = threeYearsRdBudgetRate;
  558. }
  559. public BigDecimal getRdSalesAmount() {
  560. return rdSalesAmount;
  561. }
  562. public void setRdSalesAmount(BigDecimal rdSalesAmount) {
  563. this.rdSalesAmount = rdSalesAmount;
  564. }
  565. public Integer getDataCycle() {
  566. return dataCycle;
  567. }
  568. public void setDataCycle(Integer dataCycle) {
  569. this.dataCycle = dataCycle;
  570. }
  571. public BigDecimal getActualSalesAmount() {
  572. return actualSalesAmount;
  573. }
  574. public void setActualSalesAmount(BigDecimal actualSalesAmount) {
  575. this.actualSalesAmount = actualSalesAmount;
  576. }
  577. public Integer getActualRdNumber() {
  578. return actualRdNumber;
  579. }
  580. public void setActualRdNumber(Integer actualRdNumber) {
  581. this.actualRdNumber = actualRdNumber;
  582. }
  583. public Integer getActualOutsourcingNumber() {
  584. return actualOutsourcingNumber;
  585. }
  586. public void setActualOutsourcingNumber(Integer actualOutsourcingNumber) {
  587. this.actualOutsourcingNumber = actualOutsourcingNumber;
  588. }
  589. public Integer getActualCooperateNumber() {
  590. return actualCooperateNumber;
  591. }
  592. public void setActualCooperateNumber(Integer actualCooperateNumber) {
  593. this.actualCooperateNumber = actualCooperateNumber;
  594. }
  595. public Integer getActualRegistrationNumber() {
  596. return actualRegistrationNumber;
  597. }
  598. public void setActualRegistrationNumber(Integer actualRegistrationNumber) {
  599. this.actualRegistrationNumber = actualRegistrationNumber;
  600. }
  601. public BigDecimal getActualRdAmount() {
  602. return actualRdAmount;
  603. }
  604. public void setActualRdAmount(BigDecimal actualRdAmount) {
  605. this.actualRdAmount = actualRdAmount;
  606. }
  607. public Double getActualRdRate() {
  608. return actualRdRate;
  609. }
  610. public void setActualRdRate(Double actualRdRate) {
  611. this.actualRdRate = actualRdRate;
  612. }
  613. public Double getThreeYearsActualRdRate() {
  614. return threeYearsActualRdRate;
  615. }
  616. public void setThreeYearsActualRdRate(Double threeYearsActualRdRate) {
  617. this.threeYearsActualRdRate = threeYearsActualRdRate;
  618. }
  619. public Double getRdCompletionProgress() {
  620. return rdCompletionProgress;
  621. }
  622. public void setRdCompletionProgress(Double rdCompletionProgress) {
  623. this.rdCompletionProgress = rdCompletionProgress;
  624. }
  625. public Integer getTorchStatus() {
  626. return torchStatus;
  627. }
  628. public void setTorchStatus(Integer torchStatus) {
  629. this.torchStatus = torchStatus;
  630. }
  631. public Integer getChStatus() {
  632. return chStatus;
  633. }
  634. public void setChStatus(Integer chStatus) {
  635. this.chStatus = chStatus;
  636. }
  637. public Integer getStatisticsStatus() {
  638. return statisticsStatus;
  639. }
  640. public void setStatisticsStatus(Integer statisticsStatus) {
  641. this.statisticsStatus = statisticsStatus;
  642. }
  643. public Integer getFinalSettlementStatus() {
  644. return finalSettlementStatus;
  645. }
  646. public void setFinalSettlementStatus(Integer finalSettlementStatus) {
  647. this.finalSettlementStatus = finalSettlementStatus;
  648. }
  649. public String getTorchOther() {
  650. return torchOther;
  651. }
  652. public void setTorchOther(String torchOther) {
  653. this.torchOther = torchOther;
  654. }
  655. public String getChOther() {
  656. return chOther;
  657. }
  658. public void setChOther(String chOther) {
  659. this.chOther = chOther;
  660. }
  661. public String getStatisticsOther() {
  662. return statisticsOther;
  663. }
  664. public void setStatisticsOther(String statisticsOther) {
  665. this.statisticsOther = statisticsOther;
  666. }
  667. public String getFinalSettlementOther() {
  668. return finalSettlementOther;
  669. }
  670. public void setFinalSettlementOther(String finalSettlementOther) {
  671. this.finalSettlementOther = finalSettlementOther;
  672. }
  673. public Integer getReportFormsRdNumber() {
  674. return reportFormsRdNumber;
  675. }
  676. public void setReportFormsRdNumber(Integer reportFormsRdNumber) {
  677. this.reportFormsRdNumber = reportFormsRdNumber;
  678. }
  679. public BigDecimal getIntellectualPropertyAmount() {
  680. return intellectualPropertyAmount;
  681. }
  682. public void setIntellectualPropertyAmount(BigDecimal intellectualPropertyAmount) {
  683. this.intellectualPropertyAmount = intellectualPropertyAmount;
  684. }
  685. public BigDecimal getReportRdAmount() {
  686. return reportRdAmount;
  687. }
  688. public void setReportRdAmount(BigDecimal reportRdAmount) {
  689. this.reportRdAmount = reportRdAmount;
  690. }
  691. public Integer getRdReservesStatus() {
  692. return rdReservesStatus;
  693. }
  694. public void setRdReservesStatus(Integer rdReservesStatus) {
  695. this.rdReservesStatus = rdReservesStatus;
  696. }
  697. public String getRdReservesOther() {
  698. return rdReservesOther;
  699. }
  700. public void setRdReservesOther(String rdReservesOther) {
  701. this.rdReservesOther = rdReservesOther;
  702. }
  703. public Integer getRdAwardCompensationStatus() {
  704. return rdAwardCompensationStatus;
  705. }
  706. public void setRdAwardCompensationStatus(Integer rdAwardCompensationStatus) {
  707. this.rdAwardCompensationStatus = rdAwardCompensationStatus;
  708. }
  709. public String getRdAwardCompensationOther() {
  710. return rdAwardCompensationOther;
  711. }
  712. public void setRdAwardCompensationOther(String rdAwardCompensationOther) {
  713. this.rdAwardCompensationOther = rdAwardCompensationOther;
  714. }
  715. public BigDecimal getRdApplicationFee() {
  716. return rdApplicationFee;
  717. }
  718. public void setRdApplicationFee(BigDecimal rdApplicationFee) {
  719. this.rdApplicationFee = rdApplicationFee;
  720. }
  721. public BigDecimal getRdAnnouncementAmount() {
  722. return rdAnnouncementAmount;
  723. }
  724. public void setRdAnnouncementAmount(BigDecimal rdAnnouncementAmount) {
  725. this.rdAnnouncementAmount = rdAnnouncementAmount;
  726. }
  727. public String getRdAnnouncementOther() {
  728. return rdAnnouncementOther;
  729. }
  730. public void setRdAnnouncementOther(String rdAnnouncementOther) {
  731. this.rdAnnouncementOther = rdAnnouncementOther;
  732. }
  733. public Integer getAdDeliverStatus() {
  734. return adDeliverStatus;
  735. }
  736. public void setAdDeliverStatus(Integer adDeliverStatus) {
  737. this.adDeliverStatus = adDeliverStatus;
  738. }
  739. public String getAdDeliverOther() {
  740. return adDeliverOther;
  741. }
  742. public void setAdDeliverOther(String adDeliverOther) {
  743. this.adDeliverOther = adDeliverOther;
  744. }
  745. public Integer getAdDeliverFinish() {
  746. return adDeliverFinish;
  747. }
  748. public void setAdDeliverFinish(Integer adDeliverFinish) {
  749. this.adDeliverFinish = adDeliverFinish;
  750. }
  751. public Integer getHtDeliverStatus() {
  752. return htDeliverStatus;
  753. }
  754. public void setHtDeliverStatus(Integer htDeliverStatus) {
  755. this.htDeliverStatus = htDeliverStatus;
  756. }
  757. public String getHtDeliverOther() {
  758. return htDeliverOther;
  759. }
  760. public void setHtDeliverOther(String htDeliverOther) {
  761. this.htDeliverOther = htDeliverOther;
  762. }
  763. public Integer getHtDeliverFinish() {
  764. return htDeliverFinish;
  765. }
  766. public void setHtDeliverFinish(Integer htDeliverFinish) {
  767. this.htDeliverFinish = htDeliverFinish;
  768. }
  769. public Integer getCloseMeetingStatus() {
  770. return closeMeetingStatus;
  771. }
  772. public void setCloseMeetingStatus(Integer closeMeetingStatus) {
  773. this.closeMeetingStatus = closeMeetingStatus;
  774. }
  775. public String getCloseMeetingOther() {
  776. return closeMeetingOther;
  777. }
  778. public void setCloseMeetingOther(String closeMeetingOther) {
  779. this.closeMeetingOther = closeMeetingOther;
  780. }
  781. public Integer getPhasedType() {
  782. return phasedType;
  783. }
  784. public void setPhasedType(Integer phasedType) {
  785. this.phasedType = phasedType;
  786. }
  787. public String getPhasedContent() {
  788. return phasedContent;
  789. }
  790. public void setPhasedContent(String phasedContent) {
  791. this.phasedContent = phasedContent;
  792. }
  793. public Integer getProjectApprovalWriteNumber() {
  794. return projectApprovalWriteNumber;
  795. }
  796. public void setProjectApprovalWriteNumber(Integer projectApprovalWriteNumber) {
  797. this.projectApprovalWriteNumber = projectApprovalWriteNumber;
  798. }
  799. public Double getProjectApprovalWriteRate() {
  800. return projectApprovalWriteRate;
  801. }
  802. public void setProjectApprovalWriteRate(Double projectApprovalWriteRate) {
  803. this.projectApprovalWriteRate = projectApprovalWriteRate;
  804. }
  805. public Integer getAdPrepareJulyStatus() {
  806. return adPrepareJulyStatus;
  807. }
  808. public void setAdPrepareJulyStatus(Integer adPrepareJulyStatus) {
  809. this.adPrepareJulyStatus = adPrepareJulyStatus;
  810. }
  811. public String getAdPrepareJulyOther() {
  812. return adPrepareJulyOther;
  813. }
  814. public void setAdPrepareJulyOther(String adPrepareJulyOther) {
  815. this.adPrepareJulyOther = adPrepareJulyOther;
  816. }
  817. public Integer getAdPrepareOctoberStatus() {
  818. return adPrepareOctoberStatus;
  819. }
  820. public void setAdPrepareOctoberStatus(Integer adPrepareOctoberStatus) {
  821. this.adPrepareOctoberStatus = adPrepareOctoberStatus;
  822. }
  823. public String getAdPrepareOctoberOther() {
  824. return adPrepareOctoberOther;
  825. }
  826. public void setAdPrepareOctoberOther(String adPrepareOctoberOther) {
  827. this.adPrepareOctoberOther = adPrepareOctoberOther;
  828. }
  829. public Integer getIpInventionPatentDeclare() {
  830. return ipInventionPatentDeclare;
  831. }
  832. public void setIpInventionPatentDeclare(Integer ipInventionPatentDeclare) {
  833. this.ipInventionPatentDeclare = ipInventionPatentDeclare;
  834. }
  835. public Integer getIpInventionPatentAuthorize() {
  836. return ipInventionPatentAuthorize;
  837. }
  838. public void setIpInventionPatentAuthorize(Integer ipInventionPatentAuthorize) {
  839. this.ipInventionPatentAuthorize = ipInventionPatentAuthorize;
  840. }
  841. public Integer getIpInventionPatentAuthorizeCount() {
  842. return ipInventionPatentAuthorizeCount;
  843. }
  844. public void setIpInventionPatentAuthorizeCount(Integer ipInventionPatentAuthorizeCount) {
  845. this.ipInventionPatentAuthorizeCount = ipInventionPatentAuthorizeCount;
  846. }
  847. public Integer getIpUtilityModelDeclare() {
  848. return ipUtilityModelDeclare;
  849. }
  850. public void setIpUtilityModelDeclare(Integer ipUtilityModelDeclare) {
  851. this.ipUtilityModelDeclare = ipUtilityModelDeclare;
  852. }
  853. public Integer getIpUtilityModelAuthorize() {
  854. return ipUtilityModelAuthorize;
  855. }
  856. public void setIpUtilityModelAuthorize(Integer ipUtilityModelAuthorize) {
  857. this.ipUtilityModelAuthorize = ipUtilityModelAuthorize;
  858. }
  859. public Integer getIpUtilityModelAuthorizeCount() {
  860. return ipUtilityModelAuthorizeCount;
  861. }
  862. public void setIpUtilityModelAuthorizeCount(Integer ipUtilityModelAuthorizeCount) {
  863. this.ipUtilityModelAuthorizeCount = ipUtilityModelAuthorizeCount;
  864. }
  865. public Integer getIpSoftwareWorksDeclare() {
  866. return ipSoftwareWorksDeclare;
  867. }
  868. public void setIpSoftwareWorksDeclare(Integer ipSoftwareWorksDeclare) {
  869. this.ipSoftwareWorksDeclare = ipSoftwareWorksDeclare;
  870. }
  871. public Integer getIpSoftwareWorksAuthorize() {
  872. return ipSoftwareWorksAuthorize;
  873. }
  874. public void setIpSoftwareWorksAuthorize(Integer ipSoftwareWorksAuthorize) {
  875. this.ipSoftwareWorksAuthorize = ipSoftwareWorksAuthorize;
  876. }
  877. public Integer getIpSoftwareWorksAuthorizeCount() {
  878. return ipSoftwareWorksAuthorizeCount;
  879. }
  880. public void setIpSoftwareWorksAuthorizeCount(Integer ipSoftwareWorksAuthorizeCount) {
  881. this.ipSoftwareWorksAuthorizeCount = ipSoftwareWorksAuthorizeCount;
  882. }
  883. public Integer getIpHt() {
  884. return ipHt;
  885. }
  886. public void setIpHt(Integer ipHt) {
  887. this.ipHt = ipHt;
  888. }
  889. public Integer getIpHtI() {
  890. return ipHtI;
  891. }
  892. public void setIpHtI(Integer ipHtI) {
  893. this.ipHtI = ipHtI;
  894. }
  895. public Integer getIpHtIi() {
  896. return ipHtIi;
  897. }
  898. public void setIpHtIi(Integer ipHtIi) {
  899. this.ipHtIi = ipHtIi;
  900. }
  901. public Integer getOutsourcingDev() {
  902. return outsourcingDev;
  903. }
  904. public void setOutsourcingDev(Integer outsourcingDev) {
  905. this.outsourcingDev = outsourcingDev;
  906. }
  907. public Integer getContractRegistration() {
  908. return contractRegistration;
  909. }
  910. public void setContractRegistration(Integer contractRegistration) {
  911. this.contractRegistration = contractRegistration;
  912. }
  913. public Integer getPublicReleaseStipulation() {
  914. return publicReleaseStipulation;
  915. }
  916. public void setPublicReleaseStipulation(Integer publicReleaseStipulation) {
  917. this.publicReleaseStipulation = publicReleaseStipulation;
  918. }
  919. public Integer getPublicReleaseActual() {
  920. return publicReleaseActual;
  921. }
  922. public void setPublicReleaseActual(Integer publicReleaseActual) {
  923. this.publicReleaseActual = publicReleaseActual;
  924. }
  925. public Integer getTrainingStipulation() {
  926. return trainingStipulation;
  927. }
  928. public void setTrainingStipulation(Integer trainingStipulation) {
  929. this.trainingStipulation = trainingStipulation;
  930. }
  931. public Integer getTrainingActual() {
  932. return trainingActual;
  933. }
  934. public void setTrainingActual(Integer trainingActual) {
  935. this.trainingActual = trainingActual;
  936. }
  937. public String getTrainingOther() {
  938. return trainingOther;
  939. }
  940. public void setTrainingOther(String trainingOther) {
  941. this.trainingOther = trainingOther;
  942. }
  943. public Integer getHtScore() {
  944. return htScore;
  945. }
  946. public void setHtScore(Integer htScore) {
  947. this.htScore = htScore;
  948. }
  949. public Integer getHtBatch() {
  950. return htBatch;
  951. }
  952. public void setHtBatch(Integer htBatch) {
  953. this.htBatch = htBatch;
  954. }
  955. public Integer getHtFocus() {
  956. return htFocus;
  957. }
  958. public void setHtFocus(Integer htFocus) {
  959. this.htFocus = htFocus;
  960. }
  961. public Integer getWebSubmit() {
  962. return webSubmit;
  963. }
  964. public void setWebSubmit(Integer webSubmit) {
  965. this.webSubmit = webSubmit;
  966. }
  967. public String getWebSubmitOther() {
  968. return webSubmitOther;
  969. }
  970. public void setWebSubmitOther(String webSubmitOther) {
  971. this.webSubmitOther = webSubmitOther;
  972. }
  973. public Integer getPaperSubmit() {
  974. return paperSubmit;
  975. }
  976. public void setPaperSubmit(Integer paperSubmit) {
  977. this.paperSubmit = paperSubmit;
  978. }
  979. public String getPaperSubmitOther() {
  980. return paperSubmitOther;
  981. }
  982. public void setPaperSubmitOther(String paperSubmitOther) {
  983. this.paperSubmitOther = paperSubmitOther;
  984. }
  985. public Integer getReviewProvince() {
  986. return reviewProvince;
  987. }
  988. public void setReviewProvince(Integer reviewProvince) {
  989. this.reviewProvince = reviewProvince;
  990. }
  991. public Integer getReviewCountry() {
  992. return reviewCountry;
  993. }
  994. public void setReviewCountry(Integer reviewCountry) {
  995. this.reviewCountry = reviewCountry;
  996. }
  997. public String getReviewProvinceNumber() {
  998. return reviewProvinceNumber;
  999. }
  1000. public void setReviewProvinceNumber(String reviewProvinceNumber) {
  1001. this.reviewProvinceNumber = reviewProvinceNumber;
  1002. }
  1003. public String getReviewCountryNumber() {
  1004. return reviewCountryNumber;
  1005. }
  1006. public void setReviewCountryNumber(String reviewCountryNumber) {
  1007. this.reviewCountryNumber = reviewCountryNumber;
  1008. }
  1009. public String getRemarks() {
  1010. return remarks;
  1011. }
  1012. public void setRemarks(String remarks) {
  1013. this.remarks = remarks;
  1014. }
  1015. public String getAid() {
  1016. return aid;
  1017. }
  1018. public void setAid(String aid) {
  1019. this.aid = aid;
  1020. }
  1021. public String getAname() {
  1022. return aname;
  1023. }
  1024. public void setAname(String aname) {
  1025. this.aname = aname;
  1026. }
  1027. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  1028. public Date getCreateTime() {
  1029. return createTime;
  1030. }
  1031. public void setCreateTime(Date createTime) {
  1032. this.createTime = createTime;
  1033. }
  1034. public Integer getMemberLvl() {
  1035. return memberLvl;
  1036. }
  1037. public void setMemberLvl(Integer memberLvl) {
  1038. this.memberLvl = memberLvl;
  1039. }
  1040. public String getProjectId() {
  1041. return projectId;
  1042. }
  1043. public void setProjectId(String projectId) {
  1044. this.projectId = projectId;
  1045. }
  1046. public String getFeatureHt() {
  1047. return featureHt;
  1048. }
  1049. public void setFeatureHt(String featureHt) {
  1050. this.featureHt = featureHt;
  1051. }
  1052. public String getFeatureAd() {
  1053. return featureAd;
  1054. }
  1055. public void setFeatureAd(String featureAd) {
  1056. this.featureAd = featureAd;
  1057. }
  1058. public String getFeatureTr() {
  1059. return featureTr;
  1060. }
  1061. public void setFeatureTr(String featureTr) {
  1062. this.featureTr = featureTr;
  1063. }
  1064. public String getFeatureTe() {
  1065. return featureTe;
  1066. }
  1067. public void setFeatureTe(String featureTe) {
  1068. this.featureTe = featureTe;
  1069. }
  1070. public String getFeatureTi() {
  1071. return featureTi;
  1072. }
  1073. public void setFeatureTi(String featureTi) {
  1074. this.featureTi = featureTi;
  1075. }
  1076. public String getFeatureOther() {
  1077. return featureOther;
  1078. }
  1079. public void setFeatureOther(String featureOther) {
  1080. this.featureOther = featureOther;
  1081. }
  1082. }