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

cn.zplatform.appapi.bean.history.Event Maven / Gradle / Ivy

The newest version!
package cn.zplatform.appapi.bean.history;

import lombok.Getter;

/**
 * Event 埋点事件
 *
 * @author Lilac
 * 2020-04-01
 */
@Getter
public enum Event {
    EventRegister("register"),
    EventLogin("login"),
    EventFinishVideo("finishVideo"),
    EventLike("like"),
    EventDislike("dislike"),
    EventComment("comment"),
    EventLikeComment("likeComment"),
    EventDislikeComment("dislikeComment"),
    EventFollow("follow"),
    EventShare("share"),
    ;

    private final String event;

    Event(String value) {
        this.event = value;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy