12345678910111213141516171819202122 |
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class DeleteSysPostMessageRequest : ILJRequest<DeleteSysPostMessageResponse>
- {
- public override string GetApiName()
- {
- return "DeleteSysPostMessage";
- }
- public string token { get; set; }
- /// <summary>
- /// 公告栏信息
- /// </summary>
- public int postid { get; set; }
- }
- public sealed class DeleteSysPostMessageResponse : LJResponse
- {
- }
- }
|