zhanghua
2023-03-08 32c350b8aca021b84125f1334f7a183a2defcbfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ycl.controller.constant;
 
/**
 * 全局常量
 * @author Lyq
 * @version 1.0
 * @date 2022/9/7
 */
public class SysConst {
    /**页面下拉框传 0表示 查询条件为全部*/
    public static final Integer COMBOBOX_ALL = 0;
 
    /**
     * 推荐hashMap的初始长度
     */
    public static final Integer REF_MAP_LENGTH = 20;
}