You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
417 B
15 lines
417 B
package com.bx.common.contant;
|
|
|
|
|
|
|
|
public class Constant {
|
|
|
|
// 最大图片上传大小
|
|
public static final long MAX_IMAGE_SIZE = 5*1024*1024;
|
|
// 最大上传文件大小
|
|
public static final long MAX_FILE_SIZE = 10*1024*1024;
|
|
// 群聊最大人数
|
|
public static final long MAX_GROUP_MEMBER = 500;
|
|
// 在线状态过期时间 600s
|
|
public static final long ONLINE_TIMEOUT_SECOND = 600;
|
|
}
|
|
|