Pu Zhibing
2025-05-08 5b64f31f1d35b38b51935b5fa7f4b8cf46fbf4cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.account.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.account.api.model.TAppUserVipDetail;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-08-08
 */
public interface TAppUserVipDetailService extends IService<TAppUserVipDetail> {
 
    void giveVipCoupun(TAppUserVipDetail recentDetail);
}