|
@@ -1,7 +1,6 @@
|
|
|
package com.bofeng.dao;
|
|
|
|
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
|
-import com.bofeng.entity.UptownHome;
|
|
|
import com.bofeng.entity.UptownHouse;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
@@ -18,5 +17,5 @@ public interface UptownHouseMapper extends BaseMapper<UptownHouse> {
|
|
|
List<UptownHouse> getAllUptownHouse(@Param("uptownId") Long uptownId);
|
|
|
|
|
|
@Select("select * from sys_uptown_house where status = 1 and unit_id = #{unitId} and doorplate = #{doorplate}")
|
|
|
- List<UptownHome> getUptownHouseBy(@Param("unitId") Long unitId, @Param("doorplate") String doorplate);
|
|
|
+ List<UptownHouse> getUptownHouseBy(@Param("unitId") Long unitId, @Param("doorplate") String doorplate);
|
|
|
}
|