package com.doumee.dao.business.join;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.doumee.dao.business.model.HotCity;
|
import com.doumee.dao.web.response.HotCityResponse;
|
import com.github.yulichang.base.mapper.MPJJoinMapper;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2023/03/21 15:48
|
*/
|
public interface HotCityJoinMapper extends MPJJoinMapper<HotCity> {
|
|
|
|
|
|
}
|