Logo

GitLab

Sign in

platform / task-web

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • task-web
  • ..
  • constant
  • Constant.java
  • 任务相关接口增加及修改
    6891ba37
    胡向南 authored
    2018-05-17 17:32:27 +0800  
    Browse Code »
Constant.java 331 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.xiniunet.task.constant;

public class Constant {
    /**
     * 完成组id
     */
    public final static Long  DONE_GROUP_ID = 0L;

    /**
     * 终止组组id
     */
    public final static Long  ABORT_GROUP_ID = 1L;

    /**
     * 逾期组组id
     */
    public final static Long  OVER_DUE_GROUP_ID = 2L;
}