|
@@ -5,6 +5,7 @@ import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
+import com.ruoyi.system.domain.vo.CollectionsVo;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
@@ -42,7 +43,7 @@ public class PostCollectionsSystemController extends BaseController
|
|
|
public TableDataInfo list(PostCollectionsSystem postCollectionsSystem)
|
|
|
{
|
|
|
startPage();
|
|
|
- List<PostCollectionsSystem> list = postCollectionsSystemService.selectPostCollectionsSystemList(postCollectionsSystem);
|
|
|
+ List<CollectionsVo> list = postCollectionsSystemService.selectPostCollectionsSystemListPage(postCollectionsSystem);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
@@ -94,7 +95,6 @@ public class PostCollectionsSystemController extends BaseController
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
return toAjax(postCollectionsSystemService.insertPostCollectionsSystem(postCollectionsSystem));
|
|
|
}
|
|
|
|