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

com.fasc.open.api.enums.common.NotifyWayEnum Maven / Gradle / Ivy

The newest version!
package com.fasc.open.api.enums.common;

/**
 * @author Fadada
 * 2021/9/23 11:20:11
 */
public enum NotifyWayEnum {
    /**
     * 通知方式:
     * mobile: 手机
     * email: 邮箱
     */
    MOBILE("mobile", "手机号"),
    EMAIL("email", "邮箱");

    private String code;
    private String remark;

    NotifyWayEnum(String code, String remark) {
        this.code = code;
        this.remark = remark;
    }

    public String getCode() {
        return code;
    }

    public String getRemark() {
        return remark;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy