package com.dg.core.db.gen.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dg.core.db.gen.entity.Guidance;
|
import com.dg.core.db.gen.entity.GuidePlate;
|
import com.dg.core.db.gen.entity.OrganizationEntity;
|
|
import java.util.List;
|
|
public interface HomeStatisticsMapper extends BaseMapper<GuidePlate>
|
{
|
/**
|
* 按办结量排序
|
* @return
|
*/
|
List<GuidePlate> guidePlatePeople();
|
|
/**
|
*按评分排序
|
* @return
|
*/
|
List<GuidePlate> score();
|
|
/**
|
* 按超时
|
* @return
|
*/
|
List<GuidePlate> timeout();
|
|
/**
|
* 导办人员统计数
|
* @return
|
*/
|
Integer staffNum();
|
|
/**
|
* 办事指南数量统计
|
* @return
|
*/
|
Integer countWork();
|
|
/**
|
* 获取一级部门
|
* @return
|
*/
|
List<OrganizationEntity> getDepartment();
|
|
/**
|
* 评分
|
* @return
|
*/
|
Integer organizationScore(List<String> ids);
|
|
/**
|
* 办结量
|
* @return
|
*/
|
Integer organizationNum(List<String> ids);
|
|
/**
|
* 办事指南根据导办数量排序
|
* @return
|
*/
|
List<Guidance> guidanceTransaction();
|
|
/**
|
* 办事指南根据浏览数量排序
|
* @return
|
*/
|
List<Guidance> guidanceBrowse();
|
}
|