1234567891011121314151617181920212223242526 |
- 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
- {
- /// <summary>
- /// 违停单处理/撤销
- /// </summary>
- public sealed class EditBillRequest : ILJRequest<EditBillResponse>
- {
- public string GetApiName()
- {
- return "EditBill";
- }
- public string token { get; set; }
- public Bill billInfo { get; set; }
- }
- public sealed class EditBillResponse : LJResponse
- {
- }
- }
|