【7.3.3】【message】更新系统消息类型

pull/44/head
fengshuonan 2022-11-22 00:00:09 +08:00
parent 668199e07f
commit df45637b99
1 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,54 @@
/*
* Copyright [2020-2030] [https://www.stylefeng.cn]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* GunsAPACHE LICENSE 2.0使
*
* 1.LICENSE
* 2.Guns
* 3.
* 4. https://gitee.com/stylefeng/guns
* 5. https://gitee.com/stylefeng/guns
* 6.
*/
package cn.stylefeng.roses.kernel.message.api.enums;
import lombok.Getter;
/**
*
*
* @author fengshuonan
* @since 2022/11/21 23:59
*/
@Getter
public enum MessageTypeEnum {
/**
*
*/
NORMAL("NORMAL"),
/**
* url
*/
URL("URL");
private final String code;
MessageTypeEnum(String code) {
this.code = code;
}
}