using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LJLib.Net.SPI.Com;
namespace JLHHJSvr.Com.APP
{
///
/// 自助停车备案保存
///
public sealed class TmpSavePermitRequest: ILJRequest
{
public string GetApiName()
{
return "TmpSavePermit";
}
public int roadid { get; set; }
public string carnum { get; set; }
public string dscrp { get; set; }
public string owner { get; set; }
public string owner_tel { get; set; }
}
public sealed class TmpSavePermitResponse : LJResponse
{
}
}