All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gnss.common.constants.CommonConstants Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package com.gnss.common.constants;

import java.time.ZoneId;

/**
 * 

Description: 公共常量

*

Company: www.gps-pro.cn

* * @author huangguangbin * @version 1.0.1 * @date 2018/2/3 */ public class CommonConstants { private CommonConstants() { } /** * 中国时区 */ public static final ZoneId ZONE_GMT8 = ZoneId.of("GMT+8"); public static final int YES = 1; public static final int NO = 0; /** * 默认消息ID */ public static final int DEFAULT_MESSAGE_ID = -999; /** * 不支持的整型指令ID */ public static final int UNSUPPORT_MESSAGE_ID = -1; /** * 不支持的字符串指令ID */ public static final String UNSUPPORTED_STR_MESSAGE_ID = "unsupported"; /** * 默认编码 */ public static final String DEFAULT_CHARSET_NAME = "GBK"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy