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

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

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

import lombok.Getter;

/**
 * 

Description: RPC消息类型

*

Company: www.gps-pro.cn

* * @author huangguangbin * @version 1.0.1 * @date 2018/2/3 */ @Getter public enum RpcEnum { /** * 上级平台配置 */ SUPERIOR_CONFIG("上级平台配置"); private String name; RpcEnum(String name) { this.name = name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy