zouyu
2025-03-19 3647aa5008055528f075ee73002542a1399575ae
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
55
56
package com.ruoyi.process.dto;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ProcessMethodSearchNewExcel {
    @ExcelProperty(value = {"标准名称", "标准名称"}, index = 1)
    private String methodName;
 
    @ExcelProperty(value = {"标准号", "标准号"}, index = 2)
    @ApiModelProperty("标准号")
    private String standardNo;
 
    @ExcelProperty(value = {"文件编号", "文件编号"}, index = 3)
    @ApiModelProperty("文件编号")
    private String fileNo;
 
    @ExcelProperty(value = "是否是更新标准", index = 4)
    @ApiModelProperty("是否有更新标准")
    private String isNewStandardString;
 
    @ExcelProperty(value = {"新标准名称", "新标准名称"}, index = 5)
    @ApiModelProperty("新标准名称")
    private String newMethodName;
 
    @ExcelProperty(value = {"新标准号", "新标准号"}, index =6)
    @ApiModelProperty("新标准号")
    private String newStandardNo;
 
 
    @ExcelProperty(value = {"查新记录来源", "标准网"}, index = 7)
    @ApiModelProperty("标准网")
    private String standardNet;
 
    @ExcelProperty(value = {"查新记录来源", "委托情报所"}, index = 8)
    @ApiModelProperty("委托情报所")
    private String informationOffices;
 
    @ExcelProperty(value = {"查新记录来源", "标准书店"}, index = 9)
    @ApiModelProperty("标准书店")
    private String standardBookstore;
 
    @ExcelProperty(value = {"查新记录来源", "其他"}, index = 10)
    @ApiModelProperty("其他")
    private String other;
 
    @ExcelProperty(value = {"备注", "备注"}, index = 11)
    @ApiModelProperty("备注")
    private String remarkString;
 
    @ExcelProperty(value = {"序号", "序号"}, index = 0)
    @ApiModelProperty("序号")
    private String index;
}