|
@@ -57,85 +57,103 @@ namespace DataSharing.Share.Dtos.ZiGong.TianQue
|
|
|
/// <summary>
|
|
|
/// 办理状态 1,7:流转 2:办结 3:退回 4:网格员签收 5:消息推送 6: 超时自动退单
|
|
|
/// </summary>
|
|
|
- [JsonPropertyName("replyBMName")]
|
|
|
- [MDisplayName("办理部门")]
|
|
|
+ [JsonPropertyName("replyResultType")]
|
|
|
+ [MDisplayName("办理状态")]
|
|
|
[VRequired]
|
|
|
[VStringLength(0, 10)]
|
|
|
- public string replyResultType { get; set; }
|
|
|
+ public string ReplyResultType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否属实 1:是 0:否
|
|
|
/// </summary>
|
|
|
- public string replyISTrue { get; set; }
|
|
|
+ [JsonPropertyName("replyISTrue")]
|
|
|
+ public string? ReplyISTrue { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否重复 1:是 0:否
|
|
|
/// </summary>
|
|
|
- public string isRepeat { get; set; }
|
|
|
+ [JsonPropertyName("isRepeat")]
|
|
|
+ public string? IsRepeat { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 重复工单号
|
|
|
/// </summary>
|
|
|
- public string repeatReplyCode { get; set; }
|
|
|
+ [JsonPropertyName("repeatReplyCode")]
|
|
|
+ public string? RepeatReplyCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否隐患 1:是 0:否
|
|
|
/// </summary>
|
|
|
- public string isHiddenDanger { get; set; }
|
|
|
+ [JsonPropertyName("isHiddenDanger")]
|
|
|
+ public string? IsHiddenDanger { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否重大隐患 - 1 是、0否
|
|
|
/// </summary>
|
|
|
- public string isMajorHidden { get; set; } = "0";
|
|
|
+ [JsonPropertyName("isMajorHidden")]
|
|
|
+ public string? IsMajorHidden { get; set; } = "0";
|
|
|
|
|
|
/// <summary>
|
|
|
/// 网格员姓名
|
|
|
/// </summary>
|
|
|
- public string memberName { get; set; }
|
|
|
+ [JsonPropertyName("memberName")]
|
|
|
+ public string? MemberName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 网格员电话
|
|
|
/// </summary>
|
|
|
- public string memberMobile { get; set; }
|
|
|
+ [JsonPropertyName("memberMobile")]
|
|
|
+ public string? MemberMobile { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 网格化诉求编号
|
|
|
/// </summary>
|
|
|
- public string appealNumber { get; set; }
|
|
|
+ [JsonPropertyName("appealNumber")]
|
|
|
+ public string? AppealNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 办理内容
|
|
|
/// </summary>
|
|
|
- public string replyContent { get; set; }
|
|
|
+ [JsonPropertyName("replyContent")]
|
|
|
+ [MDisplayName("办理内容")]
|
|
|
+ [VRequired]
|
|
|
+ [VStringLength(0, 5000)]
|
|
|
+ public string? ReplyContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区域id
|
|
|
/// </summary>
|
|
|
- public string orgId { get; set; }
|
|
|
+ [JsonPropertyName("orgId")]
|
|
|
+ public string? OrgId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区域名称
|
|
|
/// </summary>
|
|
|
- public string orgName { get; set; }
|
|
|
+ [JsonPropertyName("orgName")]
|
|
|
+ public string? OrgName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区域全称
|
|
|
/// </summary>
|
|
|
- public string orgFullName { get; set; }
|
|
|
+ [JsonPropertyName("orgFullName")]
|
|
|
+ public string? OrgFullName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区域全称
|
|
|
/// </summary>
|
|
|
- public string departmentNo { get; set; }
|
|
|
+ [JsonPropertyName("departmentNo")]
|
|
|
+ public string? DepartmentNo { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区域全称
|
|
|
/// </summary>
|
|
|
- public string parentOrgId { get; set; }
|
|
|
+ [JsonPropertyName("parentOrgId")]
|
|
|
+ public string? ParentOrgId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 附件
|
|
|
/// </summary>
|
|
|
- public List<String> replyFileList { get; set; }
|
|
|
+ [JsonPropertyName("replyFileList")]
|
|
|
+ public List<String>? ReplyFileList { get; set; }
|
|
|
}
|
|
|
}
|