fix: 获取模拟数据接口参数问题

This commit is contained in:
haoxr 2022-12-01 01:17:24 +08:00
parent 4bde0d90a9
commit e23d79ec04

View File

@ -27,8 +27,8 @@ public class SeataController {
@ApiOperation("获取模拟数据")
@GetMapping("/data")
public Result getData() {
SeataVO result = seataService.getData();
public Result getData(String orderSn) {
SeataVO result = seataService.getData(orderSn);
return Result.success(result);
}