|
|
|
@ -400,13 +400,19 @@ namespace Common.Shared.Application.SafetyFirePro.ResponseDto |
|
|
|
/// 计划结束时间 |
|
|
|
/// 计划结束时间 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("end_at")] |
|
|
|
[JsonPropertyName("end_at")] |
|
|
|
public string End_at { get; set; } |
|
|
|
public string? End_at { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 计划开始时间 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[JsonPropertyName("real_start_at")] |
|
|
|
|
|
|
|
public string? Real_start_at { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 实际结束时间 |
|
|
|
/// 实际结束时间 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("finish_time")] |
|
|
|
[JsonPropertyName("finish_time")] |
|
|
|
public string Finish_time { get; set; } |
|
|
|
public string? Finish_time { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业ID |
|
|
|
/// 作业ID |
|
|
|
@ -418,31 +424,25 @@ namespace Common.Shared.Application.SafetyFirePro.ResponseDto |
|
|
|
/// 作业名称 |
|
|
|
/// 作业名称 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("name")] |
|
|
|
[JsonPropertyName("name")] |
|
|
|
public string Name { get; set; } |
|
|
|
public string? Name { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业编号 |
|
|
|
/// 作业编号 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("number")] |
|
|
|
[JsonPropertyName("number")] |
|
|
|
public string Number { get; set; } |
|
|
|
public string? Number { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业人员信息 |
|
|
|
/// 作业人员信息 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("operators")] |
|
|
|
[JsonPropertyName("operators")] |
|
|
|
public List<Operator> Operators { get; set; } |
|
|
|
public List<Operator> Operators { get; set; } = []; |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业负责人信息 |
|
|
|
/// 作业负责人信息 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("principal_info")] |
|
|
|
[JsonPropertyName("principal_info")] |
|
|
|
public PrincipalInfo Principal_info { get; set; } |
|
|
|
public PrincipalInfo Principal_info { get; set; } = new PrincipalInfo(); |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 实际开始作业时间 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[JsonPropertyName("real_start_at")] |
|
|
|
|
|
|
|
public string Real_start_at { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业地点id |
|
|
|
/// 作业地点id |
|
|
|
@ -454,19 +454,19 @@ namespace Common.Shared.Application.SafetyFirePro.ResponseDto |
|
|
|
/// 作业地点信息 |
|
|
|
/// 作业地点信息 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("region")] |
|
|
|
[JsonPropertyName("region")] |
|
|
|
public Region Region { get; set; } |
|
|
|
public Region Region { get; set; } = new Region(); |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业检查信息 |
|
|
|
/// 作业检查信息 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("Supervises")] |
|
|
|
[JsonPropertyName("Supervises")] |
|
|
|
public List<Supervise> Supervises { get; set; } |
|
|
|
public List<Supervise> Supervises { get; set; } = []; |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业计划开始时间 |
|
|
|
/// 作业计划开始时间 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[JsonPropertyName("start_at")] |
|
|
|
[JsonPropertyName("start_at")] |
|
|
|
public string Start_at { get; set; } |
|
|
|
public string? Start_at { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 作业状态 |
|
|
|
/// 作业状态 |
|
|
|
@ -491,6 +491,12 @@ namespace Common.Shared.Application.SafetyFirePro.ResponseDto |
|
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("name")] |
|
|
|
[JsonPropertyName("name")] |
|
|
|
public string Name { get; set; } |
|
|
|
public string Name { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 创建时间 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[JsonPropertyName("created_at")] |
|
|
|
|
|
|
|
public string? Created_at { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public class ApprovalTask |
|
|
|
public class ApprovalTask |
|
|
|
|