| package com.doumee.dao.business.model; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * 企业项目报名信息表 | 
|  * @author 江蹄蹄 | 
|  * @date 2023/02/15 08:55 | 
|  */ | 
| @Data | 
| @ApiModel("企业项目报名信息表") | 
| public class DeclaresFW { | 
|   | 
|     @ExcelColumn(name="序号",index =1) | 
|     private Integer noNum; | 
|   | 
|     @ExcelColumn(name="企业名称",index =2) | 
|     private String companyName; | 
|   | 
|     @ExcelColumn(name="社会信用代码",index =3) | 
|     private String creditCode; | 
|   | 
|     @ExcelColumn(name="所在区域",index =4) | 
|     private String areaName; | 
|   | 
|     @ApiModelProperty(value = "项目联系人") | 
|     @ExcelColumn(name="项目联系人",index =5) | 
|     private String linkname; | 
|   | 
|     @ApiModelProperty(value = "联系方式") | 
|     @ExcelColumn(name="联系方式",index =6) | 
|     private String linkPhone; | 
|   | 
| //    @ExcelColumn(name="所属行业",index =5) | 
| //    private String indusrtyName; | 
| // | 
| //    @ExcelColumn(name="总资产",index =6) | 
| //    private BigDecimal  assets; | 
| // | 
| //    @ExcelColumn(name="上年度销售收入",index =7) | 
| //    private BigDecimal income; | 
| // | 
| //    @ExcelColumn(name="资产负债率",index =8) | 
| //    private String  ratio; | 
| // | 
| //    @ExcelColumn(name="研发总费用",index =9) | 
| //    private BigDecimal  develop; | 
| // | 
| //    @ExcelColumn(name="利润总额",index =10) | 
| //    private BigDecimal  profit; | 
| // | 
| //    @ExcelColumn(name="上缴税金",index =11) | 
| //    private BigDecimal  taxes; | 
|   | 
|     @ApiModelProperty(value = "企业人数") | 
|     @ExcelColumn(name="企业人数",index =7) | 
|     private Integer  employee; | 
|   | 
|     @ApiModelProperty(value = "诊断类型") | 
|     @ExcelColumn(name="诊断类型",index =8) | 
|     private String  diagnoseTypeName; | 
|   | 
|   | 
|     @ExcelColumn(name="问卷分数",index =13) | 
|     private BigDecimal dAScore; | 
|   | 
|     @ExcelColumn(name="服务机构名称",index =14) | 
|     private String serviceName; | 
|   | 
|     @ExcelColumn(name="子账号姓名",index =15) | 
|     private String realServiceName; | 
|   | 
|     @ExcelColumn(name="状态",index =16) | 
|     private String declareStatus; | 
|   | 
|   | 
|   | 
|   | 
|   | 
| } |