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