ShopPushOpenId返回分页数据

This commit is contained in:
张松
2025-03-10 14:59:19 +08:00
parent ef1e14f94c
commit 0b8e742bb8
3 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,10 @@
package com.czg.account.service;
import com.czg.account.dto.msg.ShopPushOpenIdEditDTO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import com.czg.account.entity.ShopPushOpenId;
import java.util.List;
/**
* 用户推送信息表 服务层。
*
@@ -14,7 +13,7 @@ import java.util.List;
*/
public interface ShopPushOpenIdService extends IService<ShopPushOpenId> {
List<ShopPushOpenId> pageInfo(Long shopId);
Page<ShopPushOpenId> pageInfo(Long shopId);
Boolean edit(Long shopId, ShopPushOpenIdEditDTO shopPushOpenIdEditDTO);