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
20 lines
381 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> getPlatform();
|
|
List<String> getGoods();
|
|
}
|