12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class DelRoadListRequest : ILJRequest<DelRoadListResponse>
- {
- public string GetApiName()
- {
- return "DelRoadList";
- }
- public string token { get; set; }
- public List<int> roadidList { get; set; }
- }
- public sealed class DelRoadListResponse : LJResponse
- {
- }
- }
|