|
@@ -244,7 +244,11 @@ public class BiSnapshotController : BaseController
|
|
|
/// <returns></returns>
|
|
|
[HttpGet("compliant-statistics")]
|
|
|
public async Task<IList<CompliantStatisticsOutDto>> CompliantStatisticsAsync([FromQuery] CompliantStatisticsInDto dto)
|
|
|
- => await _biSnapshotApplication.GetCompliantStatistics(dto).ToListAsync();
|
|
|
+ {
|
|
|
+ var items = await _biSnapshotApplication.GetCompliantStatistics(dto).ToListAsync();
|
|
|
+ items.AddSumLine("OrgName");
|
|
|
+ return items;
|
|
|
+ }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 检查合规统计-详情
|