|
|
|
|
@ -30,7 +30,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<FloorResDto>> GetListFloor() |
|
|
|
|
{ |
|
|
|
|
ApiResult<FloorResDto> result = new ApiResult<FloorResDto>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<FloorResDto> result = new ApiResult<FloorResDto>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -244,7 +244,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <returns></returns> |
|
|
|
|
public async Task<ApiResult<RootReqDto>> GetRiskMapInfo(int floorId) |
|
|
|
|
{ |
|
|
|
|
ApiResult<RootReqDto> result = new ApiResult<RootReqDto>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<RootReqDto> result = new ApiResult<RootReqDto>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -300,7 +300,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<LedgerDto>> GetLedger(WorkTaskQueryParamsDto dto) |
|
|
|
|
{ |
|
|
|
|
ApiResult<LedgerDto> result = new ApiResult<LedgerDto>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<LedgerDto> result = new ApiResult<LedgerDto>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -361,7 +361,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<HazardDataDto>> GetDangerDetail(DangerDetailReqDto dto) |
|
|
|
|
{ |
|
|
|
|
ApiResult<HazardDataDto> result = new ApiResult<HazardDataDto>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<HazardDataDto> result = new ApiResult<HazardDataDto>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -403,7 +403,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<List<InjureResDto>>> GetInjureInfo() |
|
|
|
|
{ |
|
|
|
|
ApiResult<List<InjureResDto>> result = new ApiResult<List<InjureResDto>>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<List<InjureResDto>> result = new ApiResult<List<InjureResDto>>() { Code = 200, Msg = "接口调用成功", Data = [] }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -458,7 +458,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<RegionStructureRootDto>> GetRegionRootInfo(RegionRootInfoReqDto dto) |
|
|
|
|
{ |
|
|
|
|
ApiResult<RegionStructureRootDto> result = new ApiResult<RegionStructureRootDto>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<RegionStructureRootDto> result = new ApiResult<RegionStructureRootDto>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -510,7 +510,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
/// <exception cref="NotImplementedException"></exception> |
|
|
|
|
public async Task<ApiResult<List<StatisticsInfoDto>>> GetStatistics(WorkTaskQueryParamsDto dto) |
|
|
|
|
{ |
|
|
|
|
ApiResult<List<StatisticsInfoDto>> result = new ApiResult<List<StatisticsInfoDto>>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<List<StatisticsInfoDto>> result = new ApiResult<List<StatisticsInfoDto>>() { Code = 200, Msg = "接口调用成功", Data = new() }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
@ -653,7 +653,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
|
|
|
|
|
|
|
|
public async Task<ApiResult<List<DangerHomeResDto>>> GetDangerHome() |
|
|
|
|
{ |
|
|
|
|
ApiResult<List<DangerHomeResDto>> result = new ApiResult<List<DangerHomeResDto>>() { Code = 200, Msg = "接口调用成功", Data = null }; |
|
|
|
|
ApiResult<List<DangerHomeResDto>> result = new ApiResult<List<DangerHomeResDto>>() { Code = 200, Msg = "接口调用成功", Data = [] }; |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
|