|
@@ -30,7 +30,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// 过期状态
|
|
|
/// </summary>
|
|
|
public string ExpiredStatusText => ExpiredStatus?.GetDescription() ?? string.Empty;
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 处理方式(直办、交办)
|
|
|
/// </summary>
|
|
@@ -432,7 +432,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// </summary>
|
|
|
public List<string>? Sensitive { get; set; }
|
|
|
|
|
|
- public string? SensitiveText => string.Join(',', Sensitive);
|
|
|
+ public string? SensitiveText => Sensitive?.Any() ?? false ? "" : string.Join(',', Sensitive);
|
|
|
|
|
|
public string IsProvinceText => IsProvince ? "省工单" : "市工单";
|
|
|
|
|
@@ -688,28 +688,28 @@ namespace Hotline.Share.Dtos.Order
|
|
|
|
|
|
public ETimeType? TimeLimitUnit { get; set; }
|
|
|
|
|
|
- #endregion
|
|
|
+ #endregion
|
|
|
|
|
|
- #region 市州工单互转
|
|
|
- /// <summary>
|
|
|
- /// 是否转发
|
|
|
- /// </summary>
|
|
|
- public bool? Transpond { get; set; }
|
|
|
+ #region 市州工单互转
|
|
|
+ /// <summary>
|
|
|
+ /// 是否转发
|
|
|
+ /// </summary>
|
|
|
+ public bool? Transpond { get; set; }
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 转发市州Id
|
|
|
- /// </summary>
|
|
|
- public string? TranspondCityId { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 转发市州Id
|
|
|
+ /// </summary>
|
|
|
+ public string? TranspondCityId { get; set; }
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 转发市州名称
|
|
|
- /// </summary>
|
|
|
- public string? TranspondCityName { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 转发市州名称
|
|
|
+ /// </summary>
|
|
|
+ public string? TranspondCityName { get; set; }
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 转发市州Value
|
|
|
- /// </summary>
|
|
|
- public string? TranspondCityValue { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 转发市州Value
|
|
|
+ /// </summary>
|
|
|
+ public string? TranspondCityValue { get; set; }
|
|
|
#endregion
|
|
|
|
|
|
/// <summary>
|
|
@@ -718,7 +718,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
public bool? IsEnforcementOrder { get; set; }
|
|
|
}
|
|
|
|
|
|
- public record CanLinkCallRecordOrderDto : PagedKeywordRequest
|
|
|
+ public record CanLinkCallRecordOrderDto : PagedKeywordRequest
|
|
|
{
|
|
|
|
|
|
}
|