| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.dcproj.dto.*;
- import cn.com.goldenwater.dcproj.model.BisInspPblm;
- import cn.com.goldenwater.dcproj.model.DuchaObj;
- import cn.com.goldenwater.dcproj.model.ObjPerson;
- import cn.com.goldenwater.dcproj.param.IndexParam;
- import cn.com.goldenwater.dcproj.param.IndexParamPage;
- import cn.com.goldenwater.dcproj.param.IndexPblmParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- import java.util.Map;
- public interface PcIndexService {
- Map<String,String> timeCount(String orgId);
- List<DcTypeDto> countGroup(IndexParam indexParam);
- List<DcTypeDto> countPerson(IndexParam indexParam);
- List<DcTypeDto> countDucha(IndexParam indexParam);
- List<DcTypeDto> countPblmByType(IndexParam indexParam);
- List<DcTypeDto> countPlanByOrgOrType(String type,String orgId);
- List<DcTypeDto> countPlan(IndexParam indexParam);
- List<DcTypeDto> countPlanByPro(IndexParam indexParam);
- List<DcTypeDto> countPblm(IndexParam indexParam);
- List<DcTypeDto> countGroupByPro(IndexParam indexParam);
- List<DcTypeDto> countPersonByPro(IndexParam indexParam);
- List<DcPblmDto> countPblmByPro(IndexParam indexParam);
- PersOnlineDto countPersOnline(IndexParam indexParam);
- List<CountTime> countPblmByTime(IndexPblmParam indexPblmParam);
- /**根据行政区查询分组*/
- public PageInfo<ObjGroup> countGroupByAdCode(IndexParamPage indexParam);
- PageInfo<ObjPerson> findPerByAdCode(IndexParamPage indexParamPage);
- PageInfo<DuchaObj> findObjByAdCode(IndexParamPage indexParamPage);
- PageInfo<BisInspPblm> findPblmByAdCode(IndexParamPage indexParamPage);
- /**根据行政区查询分组数量*/
- public List<DcTypeDto> findGroupCountByAdCode(IndexParamPage indexParam);
- List<DcTypeDto> findPerCountByAdCode(IndexParamPage indexParamPage);
- List<DcTypeDto> findObjCountByAdCode(IndexParamPage indexParamPage);
- List<DcTypeDto> findPblmCountByAdCode(IndexParamPage indexParamPage);
- }
|