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;
|
}
|