|
@@ -9,6 +9,7 @@ import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.system.domain.PoCollection;
|
|
|
import com.ruoyi.system.domain.vo.TetherVo;
|
|
|
import com.ruoyi.system.service.IPoUserService;
|
|
|
+import com.ruoyi.system.service.impl.PoCollectionServiceImpl;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import net.sf.jsqlparser.util.validation.metadata.DatabaseException;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
@@ -40,6 +41,9 @@ public class PoTetherController extends BaseController
|
|
|
@Autowired
|
|
|
private IPoUserService poUserService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private PoCollectionServiceImpl poCollectionService;
|
|
|
+
|
|
|
/**
|
|
|
* 标题和时间搜索消息列表
|
|
|
*/
|
|
@@ -129,7 +133,7 @@ public class PoTetherController extends BaseController
|
|
|
public TableDataInfo collectionList( @PathVariable("tetherId") Long tetherId){
|
|
|
|
|
|
startPage();
|
|
|
- List<PoCollection> collectionList = poTetherService.selectPoCollectionListById(tetherId);
|
|
|
+ List<PoCollection> collectionList = poCollectionService.selectPoCollectionListById(tetherId);
|
|
|
return getDataTable(collectionList);
|
|
|
}
|
|
|
|