UnLockTable.cs 780 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using LJLib.Net.SPI.Com;
  7. namespace JLHHJSvr.Com
  8. {
  9. public sealed class UnLockTableRequest : ILJTokenRequest<UnLockTableResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "UnLockTable";
  14. }
  15. /// <summary>
  16. /// 单据关键字
  17. /// </summary>
  18. public string keyword { get; set; }
  19. /// <summary>
  20. /// 单据相关id
  21. /// </summary>
  22. public int billid { get; set; }
  23. /// <summary>
  24. /// 单据相关编码
  25. /// </summary>
  26. public string billcode { get; set; }
  27. }
  28. public sealed class UnLockTableResponse : LJResponse
  29. {
  30. }
  31. }