会员卡接口

This commit is contained in:
张松
2025-02-15 16:51:07 +08:00
parent 2e6fc7c4b3
commit 3315bfbb28
6 changed files with 12 additions and 11 deletions

View File

@@ -21,5 +21,9 @@ public class ShopUserVipCardDTO {
* 用户余额
*/
private BigDecimal amount;
/**
* 店铺id
*/
private Long shopId;
}

View File

@@ -1,9 +1,6 @@
package com.czg.account.service;
import com.czg.account.dto.shopuser.ShopUserAddDTO;
import com.czg.account.dto.shopuser.ShopUserEditDTO;
import com.czg.account.dto.shopuser.ShopUserMoneyEditDTO;
import com.czg.account.dto.shopuser.ShopUserSummaryDTO;
import com.czg.account.dto.shopuser.*;
import com.czg.account.entity.ShopUser;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
@@ -31,6 +28,6 @@ public interface ShopUserService extends IService<ShopUser> {
/**
* 获取小程序登录用户所有店铺会员信息
*/
Page<ShopUser> vipCard(long userInfoId);
Page<ShopUserVipCardDTO> vipCard(long userInfoId);
}