using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Sps.SysSettings { /// /// 定位设置 /// public class PosSettingModel { /// /// 无参定位点设为有效点 /// public bool NoRefIsValid { get; set; } = false; /// /// 启用频差定位 /// public bool EnableDfLoc { get; set; } = false; /// /// 启用分时参考 /// public bool EnableStRef { get; set; } = true; /// /// 参考有效时间 /// public int RefValidTime { get; set; } = 10; /// /// 启用目标引导 /// public bool EnableTarLead { get; set; } = true; /// /// 目标引导范围 /// public double TarLeadRange { get; set; } = 3; } }