新增 绑定停车平台接口

This commit is contained in:
Lemon
2023-08-25 14:23:35 +08:00
parent 454022c553
commit 9c3c80ca3f
12 changed files with 406 additions and 159 deletions

View File

@@ -4,6 +4,7 @@ import com.jsowell.common.core.page.PageResponse;
import com.jsowell.pile.domain.PileStationInfo;
import com.jsowell.pile.dto.FastCreateStationDTO;
import com.jsowell.pile.dto.QueryStationDTO;
import com.jsowell.pile.dto.lutongyunting.BindParkingPlatformDTO;
import com.jsowell.pile.vo.web.PileStationVO;
import java.util.List;
@@ -105,4 +106,10 @@ public interface IPileStationInfoService {
* @return
*/
List<String> getIdsByDeptId(String deptId);
/**
* 绑定停车系统平台
* @param dto
*/
int bindParkingPlatform(BindParkingPlatformDTO dto);
}