123456789101112131415161718192021222324252627282930313233 |
- 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 UnLockTableRequest : ILJTokenRequest<UnLockTableResponse>
- {
- public override string GetApiName()
- {
- return "UnLockTable";
- }
- /// <summary>
- /// 单据关键字
- /// </summary>
- public string keyword { get; set; }
- /// <summary>
- /// 单据相关id
- /// </summary>
- public int billid { get; set; }
- /// <summary>
- /// 单据相关编码
- /// </summary>
- public string billcode { get; set; }
- }
- public sealed class UnLockTableResponse : LJResponse
- {
- }
- }
|