You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
15 lines
352 B
1 year ago
|
package com.zc.business.constant;
|
||
|
|
||
|
/**
|
||
|
* 统计恢复偏移时间类
|
||
|
* 用于定义与交通数据恢复相关的偏移时间常量。
|
||
|
*
|
||
|
* @author xiepufeng
|
||
|
*/
|
||
|
public class StatisticalRecoveryOffsetTime {
|
||
|
|
||
|
// 定义交通数据段偏移的天数常量,表示偏移-10天
|
||
|
public static final int TRAFFIC_SECTION_DATA_OFFSET_DAY = -10;
|
||
|
}
|
||
|
|