OrgCognizanceProportion.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package com.goafanti.common.model;
  2. public class OrgCognizanceProportion {
  3. private String id;
  4. private String uid;
  5. /**
  6. * 企业研发机构
  7. */
  8. private Integer institution;
  9. /**
  10. * 研发活动
  11. */
  12. private Integer activity;
  13. /**
  14. * 研发活动费用详情
  15. */
  16. private Integer activityCost;
  17. /**
  18. * 高新技术产品
  19. */
  20. private Integer techProject;
  21. /**
  22. * 知识产权
  23. */
  24. private Integer intellectualProperty;
  25. /**
  26. * 科技成果转化
  27. */
  28. private Integer achievement;
  29. /**
  30. * 企业所得税纳税申报表
  31. */
  32. private Integer ratepay;
  33. /**
  34. * 财务报表
  35. */
  36. private Integer finance;
  37. /**
  38. * 企业人员情况
  39. */
  40. private Integer humanResource;
  41. /**
  42. * 企业荣誉及其他证明材料
  43. */
  44. private Integer honorDatum;
  45. /**
  46. * 标准制定情况
  47. */
  48. private Integer standard;
  49. /**
  50. * 企业创新能力
  51. */
  52. private Integer ability;
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getUid() {
  60. return uid;
  61. }
  62. public void setUid(String uid) {
  63. this.uid = uid;
  64. }
  65. public Integer getInstitution() {
  66. return institution;
  67. }
  68. public void setInstitution(Integer institution) {
  69. this.institution = institution;
  70. }
  71. public Integer getActivity() {
  72. return activity;
  73. }
  74. public void setActivity(Integer activity) {
  75. this.activity = activity;
  76. }
  77. public Integer getActivityCost() {
  78. return activityCost;
  79. }
  80. public void setActivityCost(Integer activityCost) {
  81. this.activityCost = activityCost;
  82. }
  83. public Integer getTechProject() {
  84. return techProject;
  85. }
  86. public void setTechProject(Integer techProject) {
  87. this.techProject = techProject;
  88. }
  89. public Integer getIntellectualProperty() {
  90. return intellectualProperty;
  91. }
  92. public void setIntellectualProperty(Integer intellectualProperty) {
  93. this.intellectualProperty = intellectualProperty;
  94. }
  95. public Integer getAchievement() {
  96. return achievement;
  97. }
  98. public void setAchievement(Integer achievement) {
  99. this.achievement = achievement;
  100. }
  101. public Integer getRatepay() {
  102. return ratepay;
  103. }
  104. public void setRatepay(Integer ratepay) {
  105. this.ratepay = ratepay;
  106. }
  107. public Integer getFinance() {
  108. return finance;
  109. }
  110. public void setFinance(Integer finance) {
  111. this.finance = finance;
  112. }
  113. public Integer getHumanResource() {
  114. return humanResource;
  115. }
  116. public void setHumanResource(Integer humanResource) {
  117. this.humanResource = humanResource;
  118. }
  119. public Integer getHonorDatum() {
  120. return honorDatum;
  121. }
  122. public void setHonorDatum(Integer honorDatum) {
  123. this.honorDatum = honorDatum;
  124. }
  125. public Integer getStandard() {
  126. return standard;
  127. }
  128. public void setStandard(Integer standard) {
  129. this.standard = standard;
  130. }
  131. public Integer getAbility() {
  132. return ability;
  133. }
  134. public void setAbility(Integer ability) {
  135. this.ability = ability;
  136. }
  137. }