rk
2025-09-22 cf2391a86bdea88196d49cd33949570f74c0985d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.doumee.dao.business.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class DeclaresSystem {
    @ExcelColumn(name="企业名称",index =1)
    private String companyName;
 
 
    @ExcelColumn(name="项目名称",index =2)
    private String projectName;
 
    @ExcelColumn(name="所在区域",index =3)
    private String areaName;
 
    @ExcelColumn(name="问卷分数",index =4)
    private BigDecimal dAScore;
 
    @ExcelColumn(name="服务机构名称",index =5)
    private String serviceName;
 
    @ApiModelProperty(value = "服务单价")
    @ExcelColumn(name="服务单价",index =6)
    private BigDecimal servicePrice;
 
 
    @ApiModelProperty(value = "服务价格")
    @ExcelColumn(name="服务价格",index =7)
    private BigDecimal servicePrice2;
 
    @ApiModelProperty(value = "专家姓名")
    @ExcelColumn(name="专家姓名",index =8)
    private String realZJName;
 
    @ApiModelProperty(value = "专家评分分数")
    @ExcelColumn(name="专家评分分数",index =9)
    private BigDecimal expertScore;
 
    @ApiModelProperty(value = "服务单位子账号姓名")
    @ExcelColumn(name="服务单位子账号姓名",index =10)
    private String realServiceName;
 
    @ExcelColumn(name="状态",index =11)
    private String declareStatus;
 
 
 
}