This commit is contained in:
cjw 2024-08-19 15:48:06 +08:00
parent b455502aab
commit 6154447d6d
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class WxCounselorController extends BaseController {
*/
@Log(title = "新增预约", businessType = BusinessType.INSERT)
@RepeatSubmit()
@PostMapping()
@PostMapping("/reservation")
public R<Void> add(@Validated(AddGroup.class) @RequestBody ReservationDayBo bo) {
return toAjax(reservationService.insertByBo(bo));
}