123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- package com.pavis.app.saasbacken.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.*;
- import lombok.experimental.Accessors;
- import lombok.experimental.SuperBuilder;
- import java.util.Date;
- /**
- * <p>
- * 企业其他信息
- * </p>
- *
- * @author guan
- * @since 2021-10-29
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("enterprise_other_info")
- @ApiModel(value="EnterpriseOtherInfo对象", description="")
- @SuperBuilder
- @Getter
- @Setter
- @NoArgsConstructor
- @AllArgsConstructor
- public class EnterpriseOtherInfo{
- @ApiModelProperty(value = "主键自增id")
- @TableId(value = "id", type = IdType.ASSIGN_ID)
- private String id;
- @ApiModelProperty(value = "企业基本信息关联id")
- private String enterpriseId;
- @ApiModelProperty(value = "是否国高")
- private String isNationalHigh;
- @ApiModelProperty(value = "认定年份")
- private Integer highIdentifiedYear;
- @ApiModelProperty(value = "国高八大领域")
- private String highField;
- @ApiModelProperty(value = "高企证书号")
- private String highCertificateNum;
- @ApiModelProperty(value = "高新领域代码")
- private String highTechFieldCode;
- @ApiModelProperty(value = "是否省级重点企业研究院")
- private String isKeyProvincialResearch;
- @ApiModelProperty(value = "认定年份")
- private Integer keyProvincialIdentifiedYear;
- @ApiModelProperty(value = "省级重点企业研究院名称")
- private String keyProvincialIdentifiedName;
- @ApiModelProperty(value = "是/否省级企业研究院")
- private String isProvincialResearch;
- @ApiModelProperty(value = "认定年份")
- private Integer provincialIdentifiedYear;
- @ApiModelProperty(value = "省级企业研究院名称")
- private String provincialResearchName;
- @ApiModelProperty(value = "是/否浙江省高新技术研究开发中心")
- private String isHighTechResearchDevCenter;
- @ApiModelProperty(value = "认定年份")
- private Integer highTechIdentifiedYear;
- @ApiModelProperty(value = "浙江省高新技术研究开发中心名称")
- private String highTechResearchCenterName;
- @ApiModelProperty(value = "是/否省科小")
- private String isProvincialTechnologySmall;
- @ApiModelProperty(value = "认定年份")
- private Integer provincialTechSmallIdentifiedYear;
- @ApiModelProperty(value = "是/否雏鹰计划企业")
- private String isYoungEagles;
- @ApiModelProperty(value = "认定年份")
- private Integer youngEaglesIdentifiedYear;
- @ApiModelProperty(value = "是/否市级研发中心")
- private String isMunicipalResearchCenter;
- @ApiModelProperty(value = "认定年份")
- private Integer municipalResearchCenterIdentifiedYear;
- @ApiModelProperty(value = "市级研发中心名称")
- private String municipalResearchCenterName;
- @ApiModelProperty(value = "是/否在建飞地研发中心")
- private String isEnclaveResearchDevCenter;
- @ApiModelProperty(value = "飞地研发中心专职研发人员数")
- private Integer enclaveFulltimeStaffCount;
- @ApiModelProperty(value = "飞地研发中心场地面积")
- private Double areaOfEnclave;
- @ApiModelProperty(value = "乡镇(街道)平台")
- private String townshipStreetPlatform;
- @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 = "enterprise_other_info";
- @TableField(exist = false)
- private Integer tablecode;
- // @Override
- // protected Serializable pkVal() {
- // return this.id;
- // }
- }
|