|
@@ -23,7 +23,14 @@ public interface BuildingMapper {
|
|
|
|
|
|
int findByNameUnique(@Param("id") Integer id, @Param("siteId") Integer siteId, @Param("community") Integer community, @Param("name") String name);
|
|
|
|
|
|
- List<BuildingDto> getBuildingList(@Param("siteId") Integer siteId, @Param("sysId") Integer sysId, @Param("buildingName") String buildingName, @Param("province") Integer province, @Param("city") Integer city, @Param("region") Integer region, @Param("communityId") Integer communityId);
|
|
|
+ List<BuildingDto> getBuildingList(
|
|
|
+ @Param("siteId") Integer siteId,
|
|
|
+ @Param("sysId") Integer sysId,
|
|
|
+ @Param("buildingName") String buildingName,
|
|
|
+ @Param("province") Integer province,
|
|
|
+ @Param("city") Integer city,
|
|
|
+ @Param("region") Integer region,
|
|
|
+ @Param("communityId") Integer communityId);
|
|
|
|
|
|
BuildingDto getById(@Param("buildingId") Integer buildingId);
|
|
|
|