luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hollywood.applet.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.hollywood.common.basic.ApiResult;
import com.hollywood.common.model.TVipConfig;
 
import java.math.BigDecimal;
 
/**
 * <p>
 * 会员设置 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-02-29
 */
public interface TVipConfigService extends IService<TVipConfig> {
 
    ApiResult pay(Long userId, BigDecimal money, Integer month,Integer payType,Integer type) throws Exception;
}