yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
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.qianwen.smartman.common.constant;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/constant/ProductionTimeConstant.class */
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;
}