20 lines
406 B
Java
20 lines
406 B
Java
|
package com.jdc.jdcproject.controller;
|
||
|
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.stereotype.Controller;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 前端控制器
|
||
|
* </p>
|
||
|
*
|
||
|
* @author haoyanlu
|
||
|
* @since 2025-04-26
|
||
|
*/
|
||
|
@RestController
|
||
|
@RequestMapping("/renyuanjiegouLaowu")
|
||
|
public class RenyuanjiegouLaowuController {
|
||
|
|
||
|
}
|