update 修改对接第三方平台的枪口状态

This commit is contained in:
Guoqs
2024-06-17 13:39:50 +08:00
parent 6daf71d813
commit 27c199617e
4 changed files with 21 additions and 12 deletions

View File

@@ -83,12 +83,12 @@ public class PileConnectorInfoController extends BaseController {
@PostMapping("/getConnectorInfoListByParams")
public TableDataInfo getConnectorInfoListByParams(@RequestBody QueryConnectorListDTO dto) {
logger.info("查询接口列表 param:{}", JSON.toJSONString(dto));
try {
// 修改对接第三方平台的枪口状态
selectThirdPartyConnectorStatus(dto);
} catch (Exception e) {
logger.error("修改对接第三方平台的枪口状态 error");
}
// try {
// // 修改对接第三方平台的枪口状态
// selectThirdPartyConnectorStatus(dto);
// } catch (Exception e) {
// logger.error("修改对接第三方平台的枪口状态 error");
// }
List<PileConnectorInfoVO> list = pileConnectorInfoService.getConnectorInfoListByParams(dto);
logger.info("查询接口列表 result:{}", JSON.toJSONString(list));
return getDataTable(list);