29 lines
641 B
Java
29 lines
641 B
Java
|
package com.JN.demo.jnzmquatation.controller;
|
||
|
|
||
|
import com.JN.common.R;
|
||
|
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @ClassName ZMController
|
||
|
* @Description TODO
|
||
|
* @Author JIAL
|
||
|
* @Date 2024/2/19 8:47
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@RestController
|
||
|
@Slf4j
|
||
|
@RequestMapping("/jnquotation")
|
||
|
public class JNController {
|
||
|
|
||
|
|
||
|
|
||
|
}
|