EnterpriseOtherInfo.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.pavis.app.saasbacken.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.*;
  6. import lombok.experimental.Accessors;
  7. import lombok.experimental.SuperBuilder;
  8. import java.util.Date;
  9. /**
  10. * <p>
  11. * 企业其他信息
  12. * </p>
  13. *
  14. * @author guan
  15. * @since 2021-10-29
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. @TableName("enterprise_other_info")
  21. @ApiModel(value="EnterpriseOtherInfo对象", description="")
  22. @SuperBuilder
  23. @Getter
  24. @Setter
  25. @NoArgsConstructor
  26. @AllArgsConstructor
  27. public class EnterpriseOtherInfo{
  28. @ApiModelProperty(value = "主键自增id")
  29. @TableId(value = "id", type = IdType.ASSIGN_ID)
  30. private String id;
  31. @ApiModelProperty(value = "企业基本信息关联id")
  32. private String enterpriseId;
  33. @ApiModelProperty(value = "是否国高")
  34. private String isNationalHigh;
  35. @ApiModelProperty(value = "认定年份")
  36. private Integer highIdentifiedYear;
  37. @ApiModelProperty(value = "国高八大领域")
  38. private String highField;
  39. @ApiModelProperty(value = "高企证书号")
  40. private String highCertificateNum;
  41. @ApiModelProperty(value = "高新领域代码")
  42. private String highTechFieldCode;
  43. @ApiModelProperty(value = "是否省级重点企业研究院")
  44. private String isKeyProvincialResearch;
  45. @ApiModelProperty(value = "认定年份")
  46. private Integer keyProvincialIdentifiedYear;
  47. @ApiModelProperty(value = "省级重点企业研究院名称")
  48. private String keyProvincialIdentifiedName;
  49. @ApiModelProperty(value = "是/否省级企业研究院")
  50. private String isProvincialResearch;
  51. @ApiModelProperty(value = "认定年份")
  52. private Integer provincialIdentifiedYear;
  53. @ApiModelProperty(value = "省级企业研究院名称")
  54. private String provincialResearchName;
  55. @ApiModelProperty(value = "是/否浙江省高新技术研究开发中心")
  56. private String isHighTechResearchDevCenter;
  57. @ApiModelProperty(value = "认定年份")
  58. private Integer highTechIdentifiedYear;
  59. @ApiModelProperty(value = "浙江省高新技术研究开发中心名称")
  60. private String highTechResearchCenterName;
  61. @ApiModelProperty(value = "是/否省科小")
  62. private String isProvincialTechnologySmall;
  63. @ApiModelProperty(value = "认定年份")
  64. private Integer provincialTechSmallIdentifiedYear;
  65. @ApiModelProperty(value = "是/否雏鹰计划企业")
  66. private String isYoungEagles;
  67. @ApiModelProperty(value = "认定年份")
  68. private Integer youngEaglesIdentifiedYear;
  69. @ApiModelProperty(value = "是/否市级研发中心")
  70. private String isMunicipalResearchCenter;
  71. @ApiModelProperty(value = "认定年份")
  72. private Integer municipalResearchCenterIdentifiedYear;
  73. @ApiModelProperty(value = "市级研发中心名称")
  74. private String municipalResearchCenterName;
  75. @ApiModelProperty(value = "是/否在建飞地研发中心")
  76. private String isEnclaveResearchDevCenter;
  77. @ApiModelProperty(value = "飞地研发中心专职研发人员数")
  78. private Integer enclaveFulltimeStaffCount;
  79. @ApiModelProperty(value = "飞地研发中心场地面积")
  80. private Double areaOfEnclave;
  81. @ApiModelProperty(value = "乡镇(街道)平台")
  82. private String townshipStreetPlatform;
  83. @ApiModelProperty(value = "备注")
  84. private String remark;
  85. @ApiModelProperty(value = "预留字段1")
  86. private String by1;
  87. @ApiModelProperty(value = "预留字段2")
  88. private String by2;
  89. @ApiModelProperty(value = "预留字段3")
  90. private String by3;
  91. @ApiModelProperty(value = "预留字段4")
  92. private String by4;
  93. @ApiModelProperty(value = "预留字段5")
  94. private String by5;
  95. @ApiModelProperty(value = "预留字段6")
  96. private String by6;
  97. @ApiModelProperty(value = "预留字段7")
  98. private String by7;
  99. @ApiModelProperty(value = "预留字段8")
  100. private String by8;
  101. @ApiModelProperty(value = "预留字段9")
  102. private String by9;
  103. @ApiModelProperty(value = "预留字段10")
  104. private String by10;
  105. @TableField(value = "create_time",fill = FieldFill.INSERT)
  106. @ApiModelProperty(value = "创建时间")
  107. private Date createTime;
  108. @ApiModelProperty(value = "创建者")
  109. private Long creator;
  110. @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
  111. @ApiModelProperty(value = "更新时间")
  112. private Date updateTime;
  113. @ApiModelProperty(value = "更新者")
  114. private Long updator;
  115. @TableField(exist = false)
  116. private String tablename = "enterprise_other_info";
  117. @TableField(exist = false)
  118. private Integer tablecode;
  119. // @Override
  120. // protected Serializable pkVal() {
  121. // return this.id;
  122. // }
  123. }