6350697b4d934be7b2d907b3cfc2e006c16fe0b6.svn-base
1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.thinkgem.jeesite.modules.reg.web.httprest.utils;
public class SysUtil {
/*******************************************
**** 图片FTP存储信息
*******************************************/
/****
*
* 一窗受理收件正式配置
*
*
* *****/
//FTP服务器IP地址
public static final String IMAGE_FTP_IP="172.16.56.30";//"121.42.24.5";
//FTP服务器端口
public static final Integer IMAGE_FTP_PORT=21;//9099;
//FTP用户名
public static final String IMAGE_FTP_USERNAME="hzbdc";//"langzhi";
//FTP密码
public static final String IMAGE_FTP_USERPWD="1qaz2WSX";//"langzhi20140901";
//FTP默认工作路径
public static final String FILE_FTP_DEFAULTDIREECTORY="/";//"nightplay";
//FTP设置默认超时时间
public static final Integer IMAGE_FTP_DEFAULTTIMEOUT=30;
// 上传图片文件大小
public static final Integer IMAGE_FTP_MAXSIZE=2*1024*1024;
// 上传文档文件大小
public static final Integer WORD_FTP_MAXSIZE=10*1024*1024;
// 上传Excel文件大小
public static final Integer EXCEL_FTP_MAXSIZE=8*1024*1024;
//上传音频文件大小
public static final Integer MEDIA_FTP_MAXSIZE=100*1024*1024;
}