12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.sooka.sponest.data.commandcenter.service;
- import com.sooka.sponest.data.commandcenter.domian.AreaBody;
- import com.sooka.sponest.data.commandcenter.domian.CommandCenterBO;
- import com.sooka.sponest.data.commandcenter.domian.ProjectBody;
- import com.sooka.sponest.data.digitalagriculture.domain.bo.AgricultureViewBO;
- import com.sooka.sponest.data.generalbusiness.domain.CenterdataTForestNetworkprocessing;
- import java.util.List;
- import java.util.Map;
- public interface ICommandCenterService {
- // 四长概况
- Map<String, Object> fourLengthOverview(CommandCenterBO commandCenterBO);
- // 四长结构
- Map<String, Object> getOverview(CommandCenterBO commandCenterBO);
- //四长总数
- int fourLengNum(CommandCenterBO commandCenterBO);
- //四长巡视距离
- List<Map<String, Object>> patrolDistance(CommandCenterBO commandCenterBO);
- // 计划完成度
- Map<String, Object> planDegree(CommandCenterBO commandCenterBO);
- // 任务完成度
- Map<String, Object> taskDegree(CommandCenterBO commandCenterBO);
- // 重点工程
- List<ProjectBody> getKeyProjects(CommandCenterBO commandCenterBO);
- // 重点区域
- List<AreaBody> getImportAreaList(CommandCenterBO commandCenterBO);
- // 重点区域 分页
- List<Map<String, Object>> getImportAreaListPage(CommandCenterBO commandCenterBO);
- // 一网通办
- CenterdataTForestNetworkprocessing allAtOnce(CommandCenterBO commandCenterBO);
- // 机器人
- Object searchAllYouWant(CommandCenterBO commandCenterBO);
- // 四长网格树状结构
- List<Map<String, Object>> fourLengthOverTree(CommandCenterBO commandCenterBO);
- // 手机端四长列表
- List<Map<String, Object>> fourLengthOver(CommandCenterBO commandCenterBO);
- // 资源列表
- List<Map<String, Object>> resourceList(AgricultureViewBO agricultureViewBO);
- // 资源落点
- List<Map<String, Object>> resourcePoint(AgricultureViewBO agricultureViewBO);
- }
|