| package doumeemes.dao.ext.dto; | 
|   | 
| import cn.afterturn.easypoi.excel.annotation.Excel; | 
| import cn.afterturn.easypoi.excel.annotation.ExcelTarget; | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * @author T14 | 
|  */ | 
| @Data | 
| @ApiModel("设备导入信息") | 
| @ExcelTarget("SalaryParamImportDTO") | 
| public class DeviceImportDTO { | 
|   | 
|   | 
|     @Excel(name="设备编码",orderNum ="1") | 
|     private String deviceCode; | 
|   | 
|     @Excel(name="设备名称",orderNum ="2") | 
|     private String deviceName; | 
|   | 
|     @Excel(name="设备型号",orderNum ="3") | 
|     private String model; | 
|   | 
|     @Excel(name="工厂名称",orderNum ="4") | 
|     private String departName; | 
|   | 
|     @Excel(name="工序名称",orderNum ="5") | 
|     private String procedureName; | 
|   | 
|     @Excel(name="设备类型",orderNum ="6") | 
|     private String type; | 
|   | 
|     @Excel(name="待生产货位",orderNum ="7") | 
|     private String produceWarehouseLocationName; | 
|   | 
|     @Excel(name="已完工货位",orderNum ="8") | 
|     private String finishWarehouseLocationName; | 
|   | 
|     @Excel(name="关联员工",orderNum ="9") | 
|     private String userIds; | 
|   | 
|     @Excel(name="工位编号",orderNum ="10") | 
|     private String stationCode; | 
|   | 
|   | 
| } |