会员卡管理接口

This commit is contained in:
张松
2025-02-15 14:58:39 +08:00
parent 2a909f7b26
commit faa6f448c0
6 changed files with 55 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
package com.czg.account.dto.shopuser;
import lombok.Data;
import java.math.BigDecimal;
/**
* @author Administrator
*/
@Data
public class ShopUserVipCardDTO {
/**
* 店铺logo
*/
private String logo;
/**
* 店铺名
*/
private String shopName;
/**
* 用户余额
*/
private BigDecimal amount;
}

View File

@@ -28,4 +28,9 @@ public interface ShopUserService extends IService<ShopUser> {
Boolean add(Long shopId, ShopUserAddDTO shopUserAddDTO);
/**
* 获取小程序登录用户所有店铺会员信息
*/
Page<ShopUser> vipCard(long userInfoId);
}