| | |
| | | package cc.mrbird.febs.mall.service; |
| | | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.mall.dto.ApiChargeListDto; |
| | | import cc.mrbird.febs.mall.dto.ApiGoChargeDto; |
| | | import cc.mrbird.febs.mall.dto.ApiGoChargeInfoDto; |
| | | import cc.mrbird.febs.mall.entity.RunVip; |
| | | import cc.mrbird.febs.mall.vo.ApiChargeVo; |
| | | import cc.mrbird.febs.mall.vo.ApiRunVipVo; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | |
| | | public interface IRunVipService extends IService<RunVip> { |
| | | List<ApiRunVipVo> vipInfo(); |
| | | |
| | | FebsResponse goCharge(ApiGoChargeDto apiGoChargeDto); |
| | | |
| | | FebsResponse goChargeInfo(ApiGoChargeInfoDto apiGoChargeInfoDto); |
| | | |
| | | FebsResponse getChargeInfo(); |
| | | |
| | | List<ApiChargeVo> getChargeList(ApiChargeListDto apiChargeListDto); |
| | | } |