23 lines
		
	
	
		
			321 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			321 B
		
	
	
	
		
			Java
		
	
	
	
	
	
package com.cnbm.admin.enums;
 | 
						|
 | 
						|
public enum LoginOperationEnum {
 | 
						|
    /**
 | 
						|
     * 用户登录
 | 
						|
     */
 | 
						|
    LOGIN(0),
 | 
						|
    /**
 | 
						|
     * 用户退出
 | 
						|
     */
 | 
						|
    LOGOUT(1);
 | 
						|
 | 
						|
    private int value;
 | 
						|
 | 
						|
    LoginOperationEnum(int value) {
 | 
						|
        this.value = value;
 | 
						|
    }
 | 
						|
 | 
						|
    public int value() {
 | 
						|
        return this.value;
 | 
						|
    }
 | 
						|
}
 |