Browse Source

返回办理数据

qinchaoyue 3 tháng trước cách đây
mục cha
commit
c917892d63
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      src/Hotline.Share/Dtos/FlowEngine/NextStepsDto.cs

+ 4 - 4
src/Hotline.Share/Dtos/FlowEngine/NextStepsDto.cs

@@ -97,12 +97,12 @@ public class NextStepsWithOpinionDto<TSteps> : NextStepsDto<TSteps>
     /// <summary>
     /// 线索分类
     /// </summary>
-    public List<Kv> IndustryCase { get; set; }
+    public List<Kv>? IndustryCase { get; set; }
 
     /// <summary>
     /// 补充奖励类型
     /// </summary>
-    public IReadOnlyCollection<SystemDicDataOutDto> SnapshotReplenishType { get; set; }
+    public IReadOnlyCollection<SystemDicDataOutDto>? SnapshotReplenishType { get; set; }
 
     /// <summary>
     /// 工单标注的 是否安全生产
@@ -112,12 +112,12 @@ public class NextStepsWithOpinionDto<TSteps> : NextStepsDto<TSteps>
     /// <summary>
     /// 政策文件
     /// </summary>
-    public IList<FileJson> DocumentFiles { get; set; }
+    public IList<FileJson>? DocumentFiles { get; set; }
 
     /// <summary>
     /// 合规类型
     /// </summary>
-    public IEnumerable<KeyValuePair<int, string>> CompliantType { get; set; }
+    public IEnumerable<KeyValuePair<int, string>>? CompliantType { get; set; }
 
     #endregion
 }