using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LJLib.Net.SPI.Com;
namespace JLHHJSvr.Com
{
///
/// 删除指定的车位
///
public sealed class DelPermitListRequest : ILJRequest
{
public List pidList { get; set; }
public string token { get; set; }
public string GetApiName()
{
return "DelPermitList";
}
}
public sealed class DelPermitListResponse : LJResponse
{
}
}