StatusUtils.java 341 Bytes
Newer Older
徐健 committed
1 2 3 4
package com.yidianling.user;

/**
 * 部分实时状态记录类
徐健 committed
5
 * isFirstLogin && isFromGuide 表示为注册前置且进行了注册
徐健 committed
6 7 8 9
 */

public class StatusUtils {
    /**
徐健 committed
10
     * 是否是注册
徐健 committed
11 12
     */
    public static boolean isFirstLogin = false;
13 14 15

    // 是否第一次启动App
    public static boolean isFirstStartApp = false;
徐健 committed
16
}