Blame view

SmsCode.java 614 Bytes
涂亚平 committed
1 2 3 4
package com.subsidy.common.constant;

import lombok.Getter;

涂亚平 committed
5
public class SmsCode {
涂亚平 committed
6

涂亚平 committed
7 8 9 10
    /**
     * 平台:student(学生端)、school(院校端)、center(中心端)、review(评审端)
     */
    public static final String student = "student";
涂亚平 committed
11

涂亚平 committed
12
    public static final String school = "school";
涂亚平 committed
13

涂亚平 committed
14
    public static final String center = "center";
涂亚平 committed
15

涂亚平 committed
16 17 18 19 20 21 22 23
    public static final String review = "review";

    /**
     * 行为标识:register(注册标识)、login(登录标识)
     */
    public static final String register = "register";

    public static final String login = "login";
涂亚平 committed
24
}