mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
新增 后管站点下拉列表查询方法
This commit is contained in:
@@ -80,6 +80,18 @@ public class PileStationInfoController extends BaseController {
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询充电站下拉列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('pile:station:list')")
|
||||
@GetMapping("/StationSelectList")
|
||||
public TableDataInfo getStationSelectList(QueryStationDTO dto) {
|
||||
logger.info("dto:{}", JSON.toJSONString(dto));
|
||||
startPage();
|
||||
List<PileStationVO> list = pileStationInfoService.getStationSelectList(dto);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 快速建站接口
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user