zepengdev
2025-06-04 8adea43860c211ee0fde205ecc1d65ce0b4eeefd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.oying.utils;
 
/**
 * 常用静态常量
 *
 * @author Z
 * @date 2018-12-26
 */
public class ElConstant {
    /**
     * win 系统
     */
    public static final String WIN = "win";
 
    /**
     * mac 系统
     */
    public static final String MAC = "mac";
}