| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.panzhihua.common.model.vos.community.ComActSocialOrgVO; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkProjectTypeInfo; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkSocialOrgInfo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.panzhihua.service_community.entity.ComActSocialOrg; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 社会组织(ComActSocialOrg)表数据库访问层 |
| | |
| | | * @return |
| | | */ |
| | | IPage<ComActSocialOrgVO> pageList(Page page, @Param("commonPage")CommonPage commonPage); |
| | | |
| | | /** |
| | | * 主键查询 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComActSocialOrgVO detail(Long id); |
| | | |
| | | /** |
| | | * 查询社会组织数据 |
| | | * @return |
| | | */ |
| | | BigScreenHmkSocialOrgInfo selectInfo(Long communityId); |
| | | |
| | | |
| | | /** |
| | | * 查询社会组织饼状图 |
| | | * @return |
| | | */ |
| | | List<BigScreenHmkProjectTypeInfo> selectType(Long communityId); |
| | | } |