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

4 weeks ago
  1. package com.example.demo.mapper;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import java.util.List;
  4. /**
  5. * @program: GOLD
  6. * @ClassName GeneralMapper
  7. * @description:
  8. * @author: huangqizhen
  9. * @create: 202506-22 11:02
  10. * @Version 1.0
  11. **/
  12. @Mapper
  13. public interface GeneralMapper {
  14. List<String> getMarket();
  15. List<String> getALLAdminMarket();
  16. List<String> getPlatform();
  17. //获取商品
  18. List<String> getGoods();
  19. //获取活动
  20. List<String> getActivity();
  21. //获取用户的地区权限列表
  22. String getAdminMarket(String account);
  23. //获取角色地区列表
  24. String getRoleMarket(Integer roleId);
  25. List<String> getAllRoleMarket();
  26. }