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
  • 问题修改
    8b4f2f8b
    胡向南 authored
    2018-06-19 11:30:40 +0800  
    Browse Code »
Constant.java 460 Bytes
Edit Raw Blame History
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.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;

    /**
     * 系统消息的用户id
     */
    public final static Long  SYSTEM_USER_ID = 1000L;
}