1.添加连通性测试接口
parent
881859ca3d
commit
caa76b919c
@ -0,0 +1,26 @@
|
||||
package com.glxp.sale.admin.controller.sync;
|
||||
|
||||
import com.glxp.sale.common.res.BaseResponse;
|
||||
import com.glxp.sale.common.util.ResultVOUtils;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 中继服务接口
|
||||
*/
|
||||
@RestController
|
||||
public class SyncController {
|
||||
|
||||
|
||||
/**
|
||||
* 测试连通性
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/udispsync/sync/testConnection")
|
||||
public BaseResponse testConnection() {
|
||||
return ResultVOUtils.success("连接成功");
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue