setting.d.ts 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export interface iAccountCreatePayload {
  2. account: string
  3. password: string
  4. name: string
  5. company: string
  6. mobile: string
  7. telephone: string
  8. accountGroup: string
  9. }
  10. export interface iAccountEdit extends accountCreatePayload {
  11. id: string
  12. }
  13. export interface iUserInfo {
  14. account: string;
  15. accountGroup: number;
  16. company: string;
  17. csrf: string;
  18. enable: number;
  19. id: string;
  20. isAdmin: number;
  21. mobile: string;
  22. name: string;
  23. password: string;
  24. position: string;
  25. projectId: string;
  26. role: string;
  27. telephone: string;
  28. }
  29. export interface iAccountChange {
  30. id: string
  31. account: string
  32. password: string
  33. }
  34. export interface iAccountEnable {
  35. id: string
  36. enable: string
  37. }