| 12345678910111213141516171819202122232425262728 |
- package com.kym.service;
- import com.kym.entity.RechargeConfigGroup;
- import com.kym.service.mybatisplus.MyBaseService;
- /**
- * 充值配置分组服务
- *
- * @author skyline
- * @since 2026-05-26
- */
- public interface RechargeConfigGroupService extends MyBaseService<RechargeConfigGroup> {
- /**
- * 根据站点ID获取分组
- */
- RechargeConfigGroup getByStationId(String stationId);
- /**
- * 获取平台默认分组(station_id IS NULL)
- */
- RechargeConfigGroup getDefaultGroup();
- /**
- * 为站点创建分组并复制默认分组的配置项
- */
- RechargeConfigGroup createGroupForStation(String stationId);
- }
|