You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
763 B

package com.example.demo.mapper.coin;
import com.example.demo.domain.entity.Rate;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @program: GOLD
* @ClassName GeneralMapper
* @description:
* @author: huangqizhen
* @create: 2025−06-22 11:02
* @Version 1.0
**/
@Mapper
public interface GeneralMapper {
List<String> getMarket();
List<String> getALLAdminMarket();
List<String> getPlatform();
//获取商品
List<String> getGoods();
//获取活动
List<String> getActivity();
//获取管理员的地区权限列表
String getAdminMarket(String account);
//获取角色地区列表
String getRoleMarket(Integer roleId);
List<String> getAllRoleMarket();
List<Rate> getRate();
}