update 更新数据接口

This commit is contained in:
2023-04-18 16:46:47 +08:00
parent 05988af02f
commit 6add0e1b59
3 changed files with 22 additions and 3 deletions

View File

@@ -72,4 +72,12 @@ public class JumpController extends BaseController {
return response;
}
/**
* 更新接口
*/
public RestApiResponse<?> updateOrderDetail() {
orderBasicInfoService.updateElecAmount();
return new RestApiResponse<>();
}
}