Commit 592b7ff9 authored by yangyang's avatar yangyang

对接 碳银电站接口

parent 131d8d0e
......@@ -74,7 +74,8 @@ public class HouseholdTestController {
@Autowired
private TanYinDataAcquisitionService tanYinDataAcquisitionService;
/**
* 新增户用光伏-厂商API haders
......@@ -258,8 +259,25 @@ public class HouseholdTestController {
/* ---------------- 碳银接口 Test -------------- */
@TycloudOperation(ApiLevel = UserType.PUBLIC, needAuth = false)
@PostMapping(value = "/tanyin/station")
@ApiOperation(httpMethod = "POST", value = "电站基本信息接口", notes = "电站基本信息接口")
public void tanyinStation() {
tanYinDataAcquisitionService.stationList();
}
@TycloudOperation(ApiLevel = UserType.PUBLIC, needAuth = false)
@PostMapping(value = "/tanyin/inverter")
@ApiOperation(httpMethod = "POST", value = "电站逆变器信息接口", notes = "电站逆变器信息接口")
public void tanyinInverter() {
tanYinDataAcquisitionService.inverterList();
}
@TycloudOperation(ApiLevel = UserType.PUBLIC, needAuth = false)
@PostMapping(value = "/tanyin/customer")
@ApiOperation(httpMethod = "POST", value = "客户信息查询接口", notes = "客户信息查询接口")
public void tanyinCustomer() {
tanYinDataAcquisitionService.customerList();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment