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 EditBillRequest : ILJRequest
{
public string GetApiName()
{
return "EditBill";
}
public string token { get; set; }
public Bill billInfo { get; set; }
}
public sealed class EditBillResponse : LJResponse
{
}
}