fuliqi
2024-08-21 9da24a8dfa3766cec565b092fc105f7f006de070
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
package constant;
 
 
public class CheckSnapCountConstants {
    /**
     * 2022年同期车辆抓拍量(省厅)
     */
    public final static String Car_City = "check.snapCount.car.city";
    /**
     * 2022年同期车辆抓拍量(区县)
     */
    public final static String Car_County = "check.snapCount.car.county";
 
    /**
     * 2022年同期人脸抓拍量(省厅)
     */
    public final static String Face_City = "check.snapCount.face.city";
    /**
     * 2022年同期人脸抓拍量(区县)
     */
    public final static String Face_County = "check.snapCount.face.city";
 
 
    /**
     * 2022抓拍数计算倍率
     */
    public final static String Multiply = "1.2";
 
    /**
     * 区域个数
     */
    public final static Integer CountyNum = 7;
}