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.
14 lines
322 B
14 lines
322 B
|
3 years ago
|
package com.lx.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;
|
||
|
|
}
|