|
|
|
@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.jjh.common.entity.BaseInfoEntity;
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
|
@ -14,6 +16,7 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
* @author farben
|
|
|
|
|
* @date 2023-09-04
|
|
|
|
|
*/
|
|
|
|
|
@ApiModel("两业融合奖补对象")
|
|
|
|
|
@Data
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
@ -29,10 +32,12 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 企业id
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("企业id")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "企业id")
|
|
|
|
|
private Long enterpriseId;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("申报类型")
|
|
|
|
|
@JSONField(name = "申报类型")
|
|
|
|
|
@Excel(name = "申报类型", readConverterExp = "1=两业融合示范企业,2=制造业企业设立财务独立核算的制造服务业职能部门,3=制造业企业剥离服务业务成立独立的法人")
|
|
|
|
|
private Integer declarationType;
|
|
|
|
@ -40,6 +45,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 证明材料
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("证明材料")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "证明材料")
|
|
|
|
|
private String evidence;
|
|
|
|
@ -47,6 +53,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 营业执照
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("营业执照")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "营业执照")
|
|
|
|
|
private String businessLicense;
|
|
|
|
@ -54,6 +61,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 完税证明
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("完税证明")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "完税证明")
|
|
|
|
|
private String taxPaymentCertificate;
|
|
|
|
@ -61,6 +69,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 审计报告
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("审计报告")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "审计报告")
|
|
|
|
|
private String auditReport;
|
|
|
|
@ -68,6 +77,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 股权架构图
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("股权架构图")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "股权架构图")
|
|
|
|
|
private String equityStructureChart;
|
|
|
|
@ -75,6 +85,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 项目申报报告(含企业基本情况和项目基本情况)
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("项目申报报告(含企业基本情况和项目基本情况)")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "项目申报报告", readConverterExp = "含=企业基本情况和项目基本情况")
|
|
|
|
|
private String declarationReport;
|
|
|
|
@ -82,6 +93,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 独立核算相关证明
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("独立核算相关证明")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "独立核算相关证明")
|
|
|
|
|
private String independentAccounting;
|
|
|
|
@ -89,6 +101,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 验资报告
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("验资报告")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "验资报告")
|
|
|
|
|
private String capitalVerificationReport;
|
|
|
|
@ -96,6 +109,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 证明材料
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("证明材料")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "证明材料")
|
|
|
|
|
private String otherEvidence;
|
|
|
|
@ -103,6 +117,7 @@ public class BmsIntegrationIndustries extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 是否删除:0,未删除;1,已删除
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty("是否删除:0,未删除;1,已删除")
|
|
|
|
|
@JSONField(serialize = false)
|
|
|
|
|
@Excel(name = "是否删除:0,未删除;1,已删除")
|
|
|
|
|
private Long isDeleted;
|
|
|
|
|