UpdateL1Basicinfo.cs 580 B

123456789101112131415161718192021222324
  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 UpdateL1BasicinfoRequest : ILJTokenRequest<UpdateL1BasicinfoResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "UpdateL1Basicinfo";
  14. }
  15. }
  16. public sealed class UpdateL1BasicinfoResponse : LJResponse
  17. {
  18. public int mtrlnum { get; set; }
  19. public int wkgnum { get; set; }
  20. public int mtrltypenum { get; set; }
  21. }
  22. }