| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenActivityLine; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkBaseInfo; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkProjectInfo; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkProjectTypeInfo; |
| | |
| | | * 河门口大屏项目基础数据 |
| | | * @return |
| | | */ |
| | | BigScreenHmkProjectInfo selectBaseInfo(); |
| | | BigScreenHmkProjectInfo selectBaseInfo(Long communityId); |
| | | |
| | | /** |
| | | * 河门口大屏项目分类 |
| | | * @param orgName |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<BigScreenHmkProjectTypeInfo> selectType(); |
| | | List<BigScreenHmkProjectTypeInfo> selectType(@Param("orgName")String orgName,@Param("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 根据活动类型查询数量 |
| | | * @param type |
| | | * @return |
| | | */ |
| | | Integer selectActivity(Integer type); |
| | | Integer selectActivity(@Param("type") Integer type,@Param("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 首页基础数据 |
| | |
| | | */ |
| | | BigScreenHmkBaseInfo selectIndexBaseInfo(); |
| | | |
| | | /** |
| | | * 河门口大屏活动折线 |
| | | * @param date |
| | | * @param year |
| | | * @return |
| | | */ |
| | | BigScreenActivityLine selectActivityCountMonth(@Param("date") String date,@Param("year") String year); |
| | | |
| | | } |