package com.chinaztt.mes.basic.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
|
/**
|
* @Author: zhangxy
|
* @Date: 2020-11-30 9:30
|
*/
|
@Data
|
public class ParamData {
|
/**
|
* 参数编号
|
*/
|
@ExcelProperty(value="参数编号")
|
private String code;
|
/**
|
* 参数项
|
*/
|
@ExcelProperty(value="参数项")
|
private String parameterItem;
|
/**
|
* 参数类型
|
*/
|
@ExcelProperty(value="参数类型")
|
private String type;
|
|
/**
|
* 参数格式
|
*/
|
@ExcelProperty(value = "参数格式")
|
private String parameterFormat;
|
/**
|
* 单位
|
*/
|
@ExcelProperty(value="单位")
|
private String unit;
|
}
|