package com.chinaztt.mes.basic.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.Unique;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author ZTT
|
*/
|
@Data
|
public class WorkstationData {
|
/**
|
* 工作站编号
|
*/
|
@ExcelProperty(value = "工作站编号")
|
private String workstationNo;
|
/**
|
* 工作站名称
|
*/
|
@ExcelProperty(value = "工作站名称")
|
private String name;
|
/**
|
* 工作站类型
|
*/
|
@ExcelProperty(value = "工作站类型")
|
private String type;
|
|
@ExcelProperty("工厂名称")
|
private String factoryName;
|
}
|