Merge remote-tracking branch 'origin/master'

This commit is contained in:
GYJ
2025-03-10 15:11:54 +08:00
6 changed files with 22 additions and 17 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);