1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.springblade.modules.FTP;
|
| import org.springframework.stereotype.Service;
|
| /**
| * @author Administrator
| */
| @Service
| public class MyAsyncService {
| /**
| * FTP
| * @param s sql语句
| */
| public void FTP(String s) {
| FtpUtil.sqlFileUpload(s);
| }
|
| }
|
|