lyh
8 小时以前 371365543363969fd3afcc404440c838817ecc3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
    }
}