liujie
2023-07-25 738f93e8f8226518e5b0e202b1f7afd19c01656e
1
2
3
4
5
6
7
8
9
package com.dsh.course.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.course.entity.City;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface CityMapper extends BaseMapper<City> {
}