| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package com.goafanti.common.model;
- public class OrgCognizanceProportion {
- private String id;
- private String uid;
- /**
- * 企业研发机构
- */
- private Integer institution;
- /**
- * 研发活动
- */
- private Integer activity;
- /**
- * 研发活动费用详情
- */
- private Integer activityCost;
- /**
- * 高新技术产品
- */
- private Integer techProject;
- /**
- * 知识产权
- */
- private Integer intellectualProperty;
- /**
- * 科技成果转化
- */
- private Integer achievement;
- /**
- * 企业所得税纳税申报表
- */
- private Integer ratepay;
- /**
- * 财务报表
- */
- private Integer finance;
- /**
- * 企业人员情况
- */
- private Integer humanResource;
- /**
- * 企业荣誉及其他证明材料
- */
- private Integer honorDatum;
- /**
- * 标准制定情况
- */
- private Integer standard;
- /**
- * 企业创新能力
- */
- private Integer ability;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public Integer getInstitution() {
- return institution;
- }
- public void setInstitution(Integer institution) {
- this.institution = institution;
- }
- public Integer getActivity() {
- return activity;
- }
- public void setActivity(Integer activity) {
- this.activity = activity;
- }
- public Integer getActivityCost() {
- return activityCost;
- }
- public void setActivityCost(Integer activityCost) {
- this.activityCost = activityCost;
- }
- public Integer getTechProject() {
- return techProject;
- }
- public void setTechProject(Integer techProject) {
- this.techProject = techProject;
- }
- public Integer getIntellectualProperty() {
- return intellectualProperty;
- }
- public void setIntellectualProperty(Integer intellectualProperty) {
- this.intellectualProperty = intellectualProperty;
- }
- public Integer getAchievement() {
- return achievement;
- }
- public void setAchievement(Integer achievement) {
- this.achievement = achievement;
- }
- public Integer getRatepay() {
- return ratepay;
- }
- public void setRatepay(Integer ratepay) {
- this.ratepay = ratepay;
- }
- public Integer getFinance() {
- return finance;
- }
- public void setFinance(Integer finance) {
- this.finance = finance;
- }
- public Integer getHumanResource() {
- return humanResource;
- }
- public void setHumanResource(Integer humanResource) {
- this.humanResource = humanResource;
- }
- public Integer getHonorDatum() {
- return honorDatum;
- }
- public void setHonorDatum(Integer honorDatum) {
- this.honorDatum = honorDatum;
- }
- public Integer getStandard() {
- return standard;
- }
- public void setStandard(Integer standard) {
- this.standard = standard;
- }
- public Integer getAbility() {
- return ability;
- }
- public void setAbility(Integer ability) {
- this.ability = ability;
- }
- }
|