You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
using Common.Shared.Application.BaseModels; |
|
using Common.Shared.Application.SafetyFirePro.RequestDto; |
|
using Common.Shared.Application.SafetyFirePro.ResponseDto; |
|
using System.Text.Json; |
|
|
|
namespace ThirdPartyServices.DomainService.ShenZhouShengAn |
|
{ |
|
public interface ISunPalaceBoardSafetyService |
|
{ |
|
Task<ApiResult<DangerRiskAreaResDto>> GetProductionRiskEchart(); |
|
|
|
/// <summary> |
|
/// 获得四色图图层列表 |
|
/// </summary> |
|
/// <param name="ubpid">用户单位标记码</param> |
|
/// <returns></returns> |
|
Task<ApiResult<FloorResDto>> GetListFloor(); |
|
|
|
/// <summary> |
|
/// 获得四色图区域列表 |
|
/// </summary> |
|
/// <param name="floorId">图层id</param> |
|
/// <returns></returns> |
|
Task<ApiResult<RootReqDto>> GetRiskMapInfo(int floorId); |
|
|
|
Task<ApiResult<DangerInfoRootResDto>> GetDangerInfos(string? regionId, string? pRegionId); |
|
|
|
Task<ApiResult<LedgerDto>> GetLedger(WorkTaskQueryParamsDto dto); |
|
} |
|
} |