|
package com.bwie.common.constants;
|
|
|
|
/**
|
|
* @ClassName:
|
|
* @Description:
|
|
* @Author: zhuwenqiang
|
|
* @Date: 2023/10/25
|
|
*/
|
|
public class LoginConstants {
|
|
|
|
/**
|
|
* 登录成功
|
|
*/
|
|
public static final int LOGIN_SUCCESS = 1;
|
|
|
|
/**
|
|
* 登录失败
|
|
*/
|
|
public static final int LOGIN_FAIL = 2;
|
|
|
|
}
|