[fix]修改视频已读
This commit is contained in:
parent
49e52a9a55
commit
4ee40f0bdb
@ -26,7 +26,7 @@ public class AppProductController {
|
||||
|
||||
@Operation(summary = "查询商品信息列表")
|
||||
@PostMapping("page")
|
||||
public R<IPage<ProductVO>> page(@RequestBody ProductBo query, Page<Product> page) {
|
||||
public R<IPage<ProductVO>> page(@RequestBody ProductBo query) {
|
||||
IPage<ProductVO> resultPage = service.getProduct(query.getPage(), query);
|
||||
return R.ok(resultPage);
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ public class MybatisPlusConfig {
|
||||
public PaginationInnerInterceptor paginationInnerInterceptor() {
|
||||
PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
|
||||
// 分页合理化
|
||||
paginationInnerInterceptor.setOverflow(true);
|
||||
paginationInnerInterceptor.setOverflow(false);//todo 2025-09-29 暂时关闭分页合理化 等app发包后改回来
|
||||
return paginationInnerInterceptor;
|
||||
}
|
||||
|
||||
|
@ -141,7 +141,7 @@
|
||||
ON
|
||||
v.member_id = m.id
|
||||
WHERE
|
||||
mlv.user_id = #{paramMap.myId}
|
||||
mlv.member_id = #{paramMap.myId}
|
||||
AND v.status = 1
|
||||
AND v.first_frame_img IS NOT NULL
|
||||
AND v.is_private = 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user