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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Config
- {
- public class WifiParamConfig
- {
- /// <summary>
- /// 每一步代表多少米
- /// </summary>
- public double StepParam { get; set; }
- /// <summary>
- /// lbs过滤阈值(步数)
- /// </summary>
- public int ThresholdSteps { get; set; }
-
- //在以下时间段的,wifi信息都不过滤
- public string StartOne { get; set; }
- public string EndOne { get; set; }
- public string StartTwo { get; set; }
- public string EndTwo { get; set; }
- }
- }
|