yangys
2025-11-21 e8ed1a91c77ab62a924f12acd55777f227bacd7e
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
package com.qianwen.smartman.common.constant;
 
public interface ProductionTimeConstant {
    public static final Integer MINUTE_STOP = 1439;
    public static final Integer SHIFT_UPPER = 4;
    public static final Integer REST_TIME_UPPER = 6;
    public static final Integer SHIFT_DAY_UPPER = 1440;
    public static final Integer IS_DEFAULT = 1;
    public static final Integer IS_NOT_DEFAULT = 0;
    public static final Integer ENABLE = 1;
    public static final Integer DIS_ENABLE = 0;
    public static final Integer UNDEFINED_TIME_IN = 0;
    public static final Integer WORK_TIME = 1;
    public static final Integer REST_TIME = 2;
    public static final Integer UNDEFINED_TIME_OUT = 3;
    public static final Integer OFF_DAY = 4;
    public static final Integer OUT_OF_SHIFT_TIME = -1;
    public static final Integer UNDEFINED = 1;
    public static final Integer DEFINED = 0;
    public static final Integer HIGH_PRIORITY = 1;
    public static final Integer LOW_PRIORITY = 0;
    public static final Integer IS_USED = 1;
    public static final Long TIME_SLICE_EXPIRE_TIME = 259200L;
    public static final Integer SEVEN_DAYS = 7;
}