去掉多余前缀

This commit is contained in:
袁红川 2025-04-19 18:59:34 +08:00
parent 41ba645733
commit c50314e287
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Tag(name = "合同管理")
@RestController
@RequestMapping("/student/contract")
@RequestMapping("/contract")
@RequiredArgsConstructor
@Slf4j
public class ContractController {

View File

@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Tag(name = "预定信息")
@RestController
@RequestMapping("/student/reservation")
@RequestMapping("/reservation")
@Slf4j
@Setter
public class ReservationController {

View File

@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Tag(name = "钱包信息")
@RestController
@RequestMapping("/student/wallet")
@RequestMapping("/student-wallet")
@Slf4j
@Setter
public class WalletController {