Blame view

ProjectStatus.java 888 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.zhongzhi.common.constant;

/**
 * <p>
 * 项目状态
 * </p>
 *
 * @author DengMin
 * @since 2021/6/9
 */
public class ProjectStatus {

//    public static final String TO_REVIEW = "";

    public static final String UN_SUBMITTED = "填写中";

    public static final String WITHDRAWN = "已撤回";

    public static final String SCHOOL_NOT_PASSED = "不予提交市级复赛";

    public static final String REGISTER_NOT_PASSED = "报名不通过";

    public static final String PRELIMINARY_NOT_PASSED = "不予提交市级初赛";

涂亚平 committed
25
    public static final String REMATCH_WINNING_AWARD = "优胜奖";
涂亚平 committed
26

涂亚平 committed
27
    public static final String REMATCH_SILVER_AWARD = "二等奖";
涂亚平 committed
28

涂亚平 committed
29
    public static final String REMATCH_BRONZE_AWARD = "三等奖";
涂亚平 committed
30

涂亚平 committed
31 32 33
    public static final String REMATCH_FINALS_GOLD_AWARD = "一等奖";

    public static final String ABANDON = "未通过";
涂亚平 committed
34
}