sys-user-ext-org.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET
  5. * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. * Contact: 515096995@qq.com
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { SysOrg } from './sys-org';
  15. import { SysPos } from './sys-pos';
  16. /**
  17. * 系统用户扩展机构表
  18. * @export
  19. * @interface SysUserExtOrg
  20. */
  21. export interface SysUserExtOrg {
  22. /**
  23. * 雪花Id
  24. * @type {number}
  25. * @memberof SysUserExtOrg
  26. */
  27. id?: number;
  28. /**
  29. * 用户Id
  30. * @type {number}
  31. * @memberof SysUserExtOrg
  32. */
  33. userId?: number;
  34. /**
  35. * 机构Id
  36. * @type {number}
  37. * @memberof SysUserExtOrg
  38. */
  39. orgId?: number;
  40. /**
  41. *
  42. * @type {SysOrg}
  43. * @memberof SysUserExtOrg
  44. */
  45. sysOrg?: SysOrg;
  46. /**
  47. * 职位Id
  48. * @type {number}
  49. * @memberof SysUserExtOrg
  50. */
  51. posId?: number;
  52. /**
  53. *
  54. * @type {SysPos}
  55. * @memberof SysUserExtOrg
  56. */
  57. sysPos?: SysPos;
  58. /**
  59. * 工号
  60. * @type {string}
  61. * @memberof SysUserExtOrg
  62. */
  63. jobNum?: string | null;
  64. /**
  65. * 职级
  66. * @type {string}
  67. * @memberof SysUserExtOrg
  68. */
  69. posLevel?: string | null;
  70. /**
  71. * 入职日期
  72. * @type {Date}
  73. * @memberof SysUserExtOrg
  74. */
  75. joinDate?: Date | null;
  76. }