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
|
|
|
}
|