Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

谢明辉 / fanxing3

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • fanxing3
  • ..
  • constant
  • TaskStatus.java
  • xmh's avatar
    初版 · 4e429a9d
    xmh committed Jul 23, 2021
    4e429a9d
TaskStatus.java 362 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.viontech.fanxing.commons.constant;

/**
 * .
 *
 * @author 谢明辉
 * @date 2021/7/20
 */

public enum TaskStatus {
    /** 运行中 */
    RUNNING(1),
    /** 暂停 */
    PAUSE(2),
    /** 等待执行 */
    AWAIT(0),
    /** 资源不足 */
    CAN_NOT_RUN(4);
    public int val;

    TaskStatus(int val) {
        this.val = val;
    }


}