using System; using System.Collections.Generic; using System.Linq; using System.Text; using JLHHJSvr.Com.Model; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com.APP { /// /// 获取主页显示信息的数据 /// public sealed class GetMainInfoRequest : ILJRequest { public string GetApiName() { return "GetMainInfo"; } public string token { get; set; } /// /// 0|null:APP /// 1: PC /// public int? type { get; set; } } public sealed class GetMainInfoResponse : LJResponse { /// /// 未处理违停数 /// public int violateCnt { get; set; } /// /// 报备数 /// public int recordCnt { get; set; } /// /// 已到期备案数 /// public int expiredCnt { get; set; } #region PC端附加 /// /// 总车位数 /// public int totalPermitCnt { get; set; } /// /// 剩余车位 /// public int leftPermitCnt { get; set; } /// /// 过期车辆 /// public int expiredPermitCnt { get; set; } /// /// 即将过期 /// public int expiringPermitCnt { get; set; } /// /// 已到期备案列表 /// public List expiredRecordList { get; set; } #endregion } }