AuditWorkmanship.cs 716 B

1234567891011121314151617181920212223242526272829
  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 AuditWorkmanshipRequest : ILJTokenRequest<AuditWorkmanshipResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "AuditWorkmanship";
  14. }
  15. /// <summary>
  16. /// 部门id
  17. /// </summary>
  18. public List<u_workmanship_add> list { get; set; }
  19. /// <summary>
  20. /// 0 - 审核 1 - 撤审 2 - 反禁用 3 - 禁用
  21. /// </summary>
  22. public int type { get; set; }
  23. }
  24. public sealed class AuditWorkmanshipResponse : LJResponse
  25. {
  26. }
  27. }