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

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