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.
31 lines
684 B
31 lines
684 B
package com.example.demo.mapper;
|
|
|
|
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();
|
|
}
|