根据线索id查询大区的支付二维码图片

This commit is contained in:
wangxiaopeng
2024-03-27 17:17:20 +08:00
parent fb633505e1
commit 7d34faaf70

View File

@@ -42,6 +42,12 @@ public class LineController {
return ResponseResult.success(lineService.getLineInfo(lineId)); return ResponseResult.success(lineService.getLineInfo(lineId));
} }
@ApiOperation("根据线索id查询大区的支付二维码图片")
@GetMapping("/getRegionPayPic")
public ResponseResult<String> getRegionPayPic(@RequestParam("lineId")Long lineId) {
String pic = "https://coolstore-storage.oss-cn-hangzhou.aliyuncs.com/120207001943.png";
return ResponseResult.success(pic);
}