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

cn.ennwifi.webframe.tools.Actions Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.ennwifi.webframe.tools;

/**
 * 日志动作
 *
 * @author zhangjianshe
 */
public enum Actions {
    /**
     * Create actions.
     */
    CREATE("创建"), /**
     * Delete actions.
     */
    DELETE("删除"), /**
     * Update actions.
     */
    UPDATE("修改"), /**
     * Read actions.
     */
    READ("查询"), /**
     * Shenhe actions.
     */
    SHENHE("审核"), /**
     * Login actions.
     */
    LOGIN("登录");

    /**
     * The Name.
     */
    public String name;

  Actions(String name) {
    this.name = name;
  }

  @Override
  public String toString() {
    return this.name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy