admin
2025-02-11 8cc47cfe4c6d6b48e62cf00f6cbd0951ec57c264
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.everyday.word.utils;
 
/**
 * @author hxh
 * @title: Constant
 * @description: 常量
 * @date 2025/2/11 15:18
 */
public class Constant {
    public final static boolean IS_TEST = false;
    public final static String PLATEFORM_ANDROID = "android";
    public final static String PLATEFORM_IOS = "ios";
}