Merge #76 into master from cc_20260329_fix

feat:门店经纬度更新

* cc_20260329_fix: (1 commits squashed)

  - feat:门店经纬度更新

Signed-off-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>
Merged-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com>

CR-link: https://codeup.aliyun.com/692ea314dec569489f6f167c/hangzhou/java/custom_zxjp/change/76
This commit is contained in:
正新
2026-03-29 09:08:21 +00:00
parent ba03a9ac7a
commit e49e8d4fc3
8 changed files with 120 additions and 5 deletions

View File

@@ -461,4 +461,10 @@ public class TestController {
public ResponseResult<Boolean> openOnlineBankAccount(@RequestBody @Validated CoolOpenBasicInfoRequest request) {
return ResponseResult.success(walletService.openOnlineBankAccount(request));
}
@GetMapping("/handleStoreLogLai")
public ResponseResult<Boolean> handleStoreLogLai(@RequestParam(value = "flag", required = false) Integer flag ,
@RequestParam(value = "storeCode", required = false) String storeCode) {
return ResponseResult.success(storeService.handleStoreLogLai(flag,storeCode));
}
}