using System; using System.Collections.Generic; using System.Linq; using System.Text; using LJLib.Net.SPI.Com; namespace JLHHJSvr.Com { /// /// 删除车辆信息 /// public sealed class DelCarListRequest : ILJRequest { public override string GetApiName() { return "DelCarList"; } public string token { get; set; } public List carnumList { get; set; } } public sealed class DelCarListResponse : LJResponse { } }