23 lines
418 B
Java
23 lines
418 B
Java
package com.jwl.driver.server.controller;
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* <p>
|
|
* 预支付表 前端控制器
|
|
* </p>
|
|
*
|
|
* @author Automated procedures
|
|
* @since 2023-08-10
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/payPrepay")
|
|
public class PayPrepayController {
|
|
|
|
|
|
}
|