mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
Merge branch 'dev' of http://192.168.2.2:8099/jsowell/jsowell-charger-web into dev
This commit is contained in:
@@ -167,6 +167,17 @@ public class PileBillingTemplateController extends BaseController {
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询站点优惠计费模板
|
||||
*/
|
||||
@GetMapping("/queryStationPreferentialBillingTemplateList/{stationId}")
|
||||
public TableDataInfo queryStationPreferentialBillingTemplateList(@PathVariable("stationId") String stationId) {
|
||||
logger.info("查询站点优惠计费模板 param:{}", stationId);
|
||||
List<BillingTemplateVO> list = pileBillingTemplateService.queryStationPreferentialBillingTemplateList(stationId);
|
||||
logger.info("查询站点优惠计费模板 result:{}", JSONObject.toJSONString(list));
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 发布计费模板
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user