| | |
| | | @ExcelProperty("设备编码") |
| | | private String code; |
| | | |
| | | @Schema(description = "数采设备ID(外部数采 tbDeviceId)", example = "tb_001") |
| | | @ExcelProperty("数采设备ID") |
| | | private String tbDeviceId; |
| | | |
| | | @Schema(description = "设备名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "CNC 加工中心") |
| | | @ExcelProperty("设备名称") |
| | | private String name; |
| | |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "生产效率(每小时)", example = "10.5") |
| | | @ExcelProperty("生产效率(每小时)") |
| | | private java.math.BigDecimal productionEfficiency; |
| | | |
| | | @Schema(description = "传送履带(2=双倍效率)", example = "2") |
| | | @ExcelProperty("传送履带") |
| | | private Integer conveyorBelt; |
| | | |
| | | @Schema(description = "工作站编号", example = "300") |
| | | private Long workstationId; |
| | | |
| | | @Schema(description = "工作站名称", example = "一号工作站") |
| | | @ExcelProperty("工作站") |
| | | private String workstationName; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |