| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.community.entity.CommunityEntity; |
| | | import org.springblade.modules.community.excel.CommunityExcel; |
| | | import org.springblade.modules.community.vo.CommunityVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<String> getCommunityCodeListByUserId(Long userId); |
| | | |
| | | /** |
| | | * 导入社区数据 |
| | | * @param data |
| | | * @param isCovered |
| | | */ |
| | | void importCommunity(List<CommunityExcel> data, Boolean isCovered); |
| | | |
| | | /** |
| | | * 社区表 自定义新增或修改 |
| | | */ |
| | | boolean saveOrUpdateCommunityEntity(CommunityEntity community); |
| | | |
| | | /** |
| | | * 社区表 自定义详情 |
| | | */ |
| | | CommunityVO getDetail(CommunityEntity community); |
| | | } |