1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.panzhihua.common.model.dtos;
|
| import lombok.Data;
| import org.springframework.beans.factory.annotation.Value;
| import org.springframework.context.annotation.Configuration;
|
| /**
| * @author lyq
| * ftp配置信息传递类
| */
| @Data
| public class FtpConfig {
|
| private String userName;
| private String password;
| private String host;
| private int port;
| private String url;
| private String excelUrl;
| }
|
|