zjh
2025-02-21 2c785c3d4513daea9deb5c7edbb17a9f17111d25
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.ltkj.tduck.constant;
 
/**
 * @description: 通用的常亮
 * @author: smalljop
 * @create: 2018-09-27 13:25
 **/
public interface CommonConstants {
 
 
    /**
     * 超级管理员id
     */
    Long SUPER_ADMIN_ID = 1L;
 
 
    String USER_KEY = "userId";
    /**
     * 用户正常状态
     * 1:正常 0 :禁用
     */
    Integer USER_NORMAL_STATUS = 1;
    /**
     * 文件下载content_type
     */
    String FILE_DOWNLOAD_CONTENT_TYPE = "application/octet-stream;charset=UTF-8";
 
 
    /**
     * 数字常量
     */
    interface ConstantNumber {
        /**
         * @Fields NEGATIVE : ( -1 )
         */
        Integer NEGATIVE = -1;
 
        /**
         * @Fields ZERO : ( 0 )
         */
        Integer ZERO = 0;
 
        /**
         * @Fields ONE : ( 1 )
         */
        Integer ONE = 1;
 
        /**
         * @Fields TOW : ( 2 )
         */
        Integer TOW = 2;
 
        /**
         * @Fields THREE : ( 3 )
         */
        Integer THREE = 3;
 
        /**
         * @Fields FOUR : ( 4 )
         */
        Integer FOUR = 4;
 
        /**
         * @Fields FIVE : ( 5 )
         */
        Integer FIVE = 5;
 
        /**
         * @Fields FIVE : ( 6 )
         */
        Integer SIX = 6;
 
        /**
         * @Fields FIVE : ( 7 )
         */
        Integer Seven = 7;
 
        /**
         * @Fields FIVE : ( 8 )
         */
        Integer Eight = 8;
 
        /**
         * @Fields FIVE : ( 9 )
         */
        Integer Nine = 9;
 
        /**
         * @Fields FIVE : ( 10 )
         */
        Integer Ten = 10;
 
 
    }
 
}