| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActEasyPhotoVO; |
| | | import com.panzhihua.service_community.model.dos.ComActEasyPhotoDO; |
| | | |
| | | /** |
| | |
| | | * @create: 2020-12-07 14:31 |
| | | **/ |
| | | public interface ComActEasyPhotoService extends IService<ComActEasyPhotoDO> { |
| | | /** |
| | | * 分页查询随手拍 |
| | | * @param comActEasyPhotoVO 查询参数 |
| | | * @return 心愿列表 |
| | | */ |
| | | R pageEasyPhoto(ComActEasyPhotoVO comActEasyPhotoVO); |
| | | /** |
| | | * 随手拍详情 |
| | | * @param id 随手拍主键 |
| | | * @return 详情内容 |
| | | */ |
| | | R detailEasyPhoto(Long id); |
| | | } |