package com.lxzn.base.controller;
|
|
import com.lxzn.base.service.IDncPassLogService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author clown
|
* * @date 2023/12/14
|
*/
|
@RestController
|
@RequestMapping("/outer")
|
public class TestOuterController {
|
@Autowired
|
private IDncPassLogService dncPassLogService;
|
|
@RequestMapping("/nc")
|
public void fileClientTxtOrNc() {
|
dncPassLogService.fileClientTxtOrNc();
|
}
|
}
|