mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-26 18:18:01 +08:00
更新钱包code为空的数据
This commit is contained in:
@@ -928,4 +928,21 @@ public class TempController extends BaseController {
|
||||
logger.info("时间区间查询订单统计 result:{}", response);
|
||||
return response;
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新钱包code为空的数据
|
||||
* http://localhost:8080/temp/updateWalletCode
|
||||
*/
|
||||
@PostMapping("/updateWalletCode")
|
||||
public RestApiResponse<?> updateWalletCode() {
|
||||
RestApiResponse<?> response = null;
|
||||
try {
|
||||
tempService.updateWalletCode();
|
||||
response = new RestApiResponse<>();
|
||||
} catch (Exception e) {
|
||||
logger.error("更新钱包code为空数据 error", e);
|
||||
}
|
||||
logger.info("更新钱包code为空数据 result:{}", response);
|
||||
return response;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user