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