using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HxBusiness { public class ApiModel { /// /// 请求url /// public string requestUrl { get; set; } /// /// 离开url /// public string leaveUrl { get; set; } /// /// 通知url /// public string sendUrl { get; set; } /// /// 请求间隔秒数 /// public int requestSecond { get; set; } /// /// 请求地标列表 /// public string waitRfidList { get; set; } /// /// 离开归还地标列表 /// public string leavedRfidList { get; set; } /// /// 自动归还路权秒数,0=手动归还 /// public int AutoTime { get; set; } } }