|
@@ -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
|
|
|
}
|