| | |
| | | import java.util.Date; |
| | | |
| | | import com.panzhihua.service_community.dao.ComActNeighborCircleDAO; |
| | | import com.panzhihua.service_community.dao.ComActNeighborCircleTopicNewMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActNeighborCircleDO; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | |
| | | |
| | | @Resource |
| | | private ComActNeighborCircleDAO comActNeighborCircleDAO; |
| | | @Autowired |
| | | private ComActNeighborCircleTopicNewMapper comActNeighborCircleTopicNewMapper; |
| | | /** |
| | | * 分页查询邻里圈话题列表 |
| | | * |
| | |
| | | * @return 邻里圈话题列表 |
| | | */ |
| | | @Override |
| | | public R getNeighborTopicByApp(String name, Integer belongType){ |
| | | return R.ok(this.baseMapper.getNeighborTopicByApp(name, belongType)); |
| | | public R getNeighborTopicByApp(String name){ |
| | | return R.ok(this.baseMapper.getNeighborTopicByApp(name)); |
| | | } |
| | | |
| | | @Override |
| | | public R getNeighborTopicByAppNew(String name) { |
| | | return R.ok(comActNeighborCircleTopicNewMapper.getNeighborTopicByAppNew(name)); |
| | | } |
| | | |
| | | /** |