| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* tslint:disable */
- /* eslint-disable */
- /**
- * Admin.NET
- * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
- *
- * OpenAPI spec version: 1.0.0
- * Contact: 515096995@qq.com
- *
- * NOTE: This class is auto generated by the swagger code generator program.
- * https://github.com/swagger-api/swagger-codegen.git
- * Do not edit the class manually.
- */
- import { SysOrg } from './sys-org';
- import { SysPos } from './sys-pos';
- /**
- * 系统用户扩展机构表
- * @export
- * @interface SysUserExtOrg
- */
- export interface SysUserExtOrg {
- /**
- * 雪花Id
- * @type {number}
- * @memberof SysUserExtOrg
- */
- id?: number;
- /**
- * 用户Id
- * @type {number}
- * @memberof SysUserExtOrg
- */
- userId?: number;
- /**
- * 机构Id
- * @type {number}
- * @memberof SysUserExtOrg
- */
- orgId?: number;
- /**
- *
- * @type {SysOrg}
- * @memberof SysUserExtOrg
- */
- sysOrg?: SysOrg;
- /**
- * 职位Id
- * @type {number}
- * @memberof SysUserExtOrg
- */
- posId?: number;
- /**
- *
- * @type {SysPos}
- * @memberof SysUserExtOrg
- */
- sysPos?: SysPos;
- /**
- * 工号
- * @type {string}
- * @memberof SysUserExtOrg
- */
- jobNum?: string | null;
- /**
- * 职级
- * @type {string}
- * @memberof SysUserExtOrg
- */
- posLevel?: string | null;
- /**
- * 入职日期
- * @type {Date}
- * @memberof SysUserExtOrg
- */
- joinDate?: Date | null;
- }
|