123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- package com.pavis.app.saasbacken.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import com.baomidou.mybatisplus.extension.activerecord.Model;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 市级研发中心自检信息
- * </p>
- *
- * @author guan
- * @since 2021-10-29
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("municipal_research_center_check")
- @ApiModel(value="MunicipalResearchCenterCheck对象", description="")
- public class MunicipalResearchCenterCheck extends Model<MunicipalResearchCenterCheck> {
- private static final long serialVersionUID = 1L;
- @ApiModelProperty(value = "主键自增id")
- @TableId(value = "id", type = IdType.INPUT)
- private String id;
- @ApiModelProperty(value = "关联企业id")
- private String enterpriseId;
- @ApiModelProperty(value = "企业名称")
- private String name;
- @ApiModelProperty(value = "注册地址 选择框 选择杭州市,非杭州市")
- private String registerAddress;
- @ApiModelProperty(value = "注册日期")
- private String registerDate;
- @ApiModelProperty(value = "联系人")
- private String contact;
- @ApiModelProperty(value = "联系人电话,手机号")
- private String contactTel;
- @ApiModelProperty(value = "统一社会信用代码")
- private String unifySocialCreditCode;
- @ApiModelProperty(value = "拟申报年份")
- private Integer declaredYear;
- @ApiModelProperty(value = "所属行业领域,企业选择(按工商行业信息目录)")
- private String category;
- @ApiModelProperty(value = "企业类型:选择框:市级以上科技管理部门认定的高新技术企业、科技型企业、农业科技企业")
- private String enterpriseType;
- @ApiModelProperty(value = "职工总数")
- private Integer employeeCount;
- @ApiModelProperty(value = "专职科技人员数")
- private Integer technicalCount;
- @ApiModelProperty(value = "科技人员占企业当年职工总数的比例 自动计算:科技人员数/职工总数")
- private Double technicalInworkerRate;
- @ApiModelProperty(value = "技术创新项目")
- private Integer techInnovationProject;
- @ApiModelProperty(value = "市级以上科研项目")
- private Integer municipalScientificResearchProject;
- @ApiModelProperty(value = "企业自主立项技术创新项目")
- private Integer independentTechInnovationProject;
- @ApiModelProperty(value = "知识产权总数")
- private Integer intellectualCount;
- @ApiModelProperty(value = "授权发明专利(含国防专利)数")
- private Integer patentCount;
- @ApiModelProperty(value = "集成电路布图设计专有权")
- private Integer integratedCircuitExclusiveRights;
- @ApiModelProperty(value = "新型专利数")
- private Integer newPatentCount;
- @ApiModelProperty(value = "外观涉及专利数")
- private Integer appearanceDesignCount;
- @ApiModelProperty(value = "软件著作权等(不含商标)")
- private Integer softwareCopyrightCount;
- @ApiModelProperty(value = "登记(奖励)成果数")
- private Integer registerAchievementsCount;
- @ApiModelProperty(value = "上年度销售收入")
- private Double lastSaleIncome;
- @ApiModelProperty(value = "上年度研发投入")
- private Double lastResearchInput;
- @ApiModelProperty(value = "上年度自筹研发投入")
- private Double lastSelfRaisedInput;
- @ApiModelProperty(value = "研发投入占企业年销售收入总额 系统自动计算:上年度研发投入/上年度销售收入")
- private Double researchSaleRate;
- @ApiModelProperty(value = "是否财务实行单独建账核算,所需经费纳入建设企业财务年度预算 1 是,0 否")
- private String isIndependentBill;
- @ApiModelProperty(value = "科研活动各项规章制度是否健全 1 是,0 否")
- private String isScientificResearchSound;
- @ApiModelProperty(value = "科研场地面积")
- private Double researchSiteArea;
- @ApiModelProperty(value = "专用科研设备原值总额")
- private Double researchEquipmentTotal;
- @ApiModelProperty(value = "企业、高校或科研机构是否联合组建中心 1 是 0 否")
- private String isJointCenter;
- @ApiModelProperty(value = "组建中心设施总值 若有 则填写")
- private Double centerFacilitiesTotal;
- @ApiModelProperty(value = "企业专用科研设备原值总额占比 系统自动计算:专用科研设备原值总额/组建中心设施总值")
- private Double proportionEquipCenterRate;
- @ApiModelProperty(value = "企业近3年来未发生重大安全事故、重大质量事故、严重环境违法行为或严重失信行为等行为 1 是 0 否")
- private String isOccurredBad;
- @ApiModelProperty(value = "备注")
- private String remark;
- @ApiModelProperty(value = "预留字段1")
- private String by1;
- @ApiModelProperty(value = "预留字段2")
- private String by2;
- @ApiModelProperty(value = "预留字段3")
- private String by3;
- @ApiModelProperty(value = "预留字段4")
- private String by4;
- @ApiModelProperty(value = "预留字段5")
- private String by5;
- @ApiModelProperty(value = "预留字段6")
- private String by6;
- @ApiModelProperty(value = "预留字段7")
- private String by7;
- @ApiModelProperty(value = "预留字段8")
- private String by8;
- @ApiModelProperty(value = "预留字段9")
- private String by9;
- @ApiModelProperty(value = "预留字段10")
- private String by10;
- @TableField(value = "create_time",fill = FieldFill.INSERT)
- @ApiModelProperty(value = "创建时间")
- private Date createTime;
- @ApiModelProperty(value = "创建者")
- private Long creator;
- @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
- @ApiModelProperty(value = "更新时间")
- private Date updateTime;
- @ApiModelProperty(value = "更新者")
- private Long updator;
- @TableField(exist = false)
- private String tablename = "municipal_research_center_check";
- @TableField(exist = false)
- private Integer tablecode;
- @Override
- protected Serializable pkVal() {
- return this.id;
- }
- }
|