driver-server/src/main/java/com/jwl/driver/server/controller/PayPrepayController.java

23 lines
418 B
Java
Raw Normal View History

2023-08-11 11:51:09 +08:00
package com.jwl.driver.server.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.stereotype.Controller;
2023-08-20 15:06:53 +08:00
import org.springframework.web.bind.annotation.RestController;
2023-08-11 11:51:09 +08:00
/**
* <p>
*
* </p>
*
* @author Automated procedures
* @since 2023-08-10
*/
2023-08-20 15:06:53 +08:00
@RestController
@RequestMapping("/payPrepay")
2023-08-11 11:51:09 +08:00
public class PayPrepayController {
2023-08-20 15:06:53 +08:00
2023-08-11 11:51:09 +08:00
}