添加工单字段

This commit is contained in:
2024-05-30 10:34:32 +08:00
parent d81f0f1a4d
commit d681128153
3 changed files with 24 additions and 3 deletions

View File

@@ -27,9 +27,16 @@ public class CreateDeviceWorkOrderDto extends OrgCommonDto {
@ManyToOne
private String device;
@Comment("工单时间")
@Comment("工单时间-开始时间")
private LocalDateTime time;
@Comment("工单时间-结束时间")
private LocalDateTime time2;
@Comment("负责人")
private String worker;
@Comment("工单类型")
private String type;

View File

@@ -31,9 +31,16 @@ public class DeviceWorkOrderDto extends OrgCommonDto {
@ManyToOne
private SimpleDto device;
@Comment("工单时间")
@Comment("工单时间-开始时间")
private LocalDateTime time;
@Comment("工单时间-结束时间")
private LocalDateTime time2;
@Comment("负责人")
private String worker;
@Comment("工单类型")
private String type;

View File

@@ -25,9 +25,16 @@ public class UpdateDeviceWorkOrderDto extends OrgCommonDto {
@ManyToOne
private String device;
@Comment("工单时间")
@Comment("工单时间-开始时间")
private LocalDateTime time;
@Comment("工单时间-结束时间")
private LocalDateTime time2;
@Comment("负责人")
private String worker;
@Comment("工单类型")
private String type;