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.

20 lines
381 B

  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> getPlatform();
  16. List<String> getGoods();
  17. }