钟日健
2022-04-27 089984eda48375109083903548770dd92b2f8465
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);
    }
 
}