123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class LockTableRequest : ILJLockRequest<LockTableResponse>
- {
- public override string GetApiName()
- {
- return "LockTable";
- }
- }
- public sealed class LockTableResponse : LJResponse
- {
- }
- }
|