update-user-input.ts 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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 { AccountTypeEnum } from './account-type-enum';
  15. import { CardTypeEnum } from './card-type-enum';
  16. import { CultureLevelEnum } from './culture-level-enum';
  17. import { GenderEnum } from './gender-enum';
  18. import { StatusEnum } from './status-enum';
  19. import { SysOrg } from './sys-org';
  20. import { SysPos } from './sys-pos';
  21. import { SysUserExtOrg } from './sys-user-ext-org';
  22. /**
  23. *
  24. * @export
  25. * @interface UpdateUserInput
  26. */
  27. export interface UpdateUserInput {
  28. /**
  29. * 雪花Id
  30. * @type {number}
  31. * @memberof UpdateUserInput
  32. */
  33. id?: number;
  34. /**
  35. * 创建时间
  36. * @type {Date}
  37. * @memberof UpdateUserInput
  38. */
  39. createTime?: Date | null;
  40. /**
  41. * 更新时间
  42. * @type {Date}
  43. * @memberof UpdateUserInput
  44. */
  45. updateTime?: Date | null;
  46. /**
  47. * 创建者Id
  48. * @type {number}
  49. * @memberof UpdateUserInput
  50. */
  51. createUserId?: number | null;
  52. /**
  53. * 修改者Id
  54. * @type {number}
  55. * @memberof UpdateUserInput
  56. */
  57. updateUserId?: number | null;
  58. /**
  59. * 软删除
  60. * @type {boolean}
  61. * @memberof UpdateUserInput
  62. */
  63. isDelete?: boolean;
  64. /**
  65. * 租户Id
  66. * @type {number}
  67. * @memberof UpdateUserInput
  68. */
  69. tenantId?: number | null;
  70. /**
  71. * 昵称
  72. * @type {string}
  73. * @memberof UpdateUserInput
  74. */
  75. nickName?: string | null;
  76. /**
  77. * 头像
  78. * @type {string}
  79. * @memberof UpdateUserInput
  80. */
  81. avatar?: string | null;
  82. /**
  83. *
  84. * @type {GenderEnum}
  85. * @memberof UpdateUserInput
  86. */
  87. sex?: GenderEnum;
  88. /**
  89. * 年龄
  90. * @type {number}
  91. * @memberof UpdateUserInput
  92. */
  93. age?: number;
  94. /**
  95. * 出生日期
  96. * @type {Date}
  97. * @memberof UpdateUserInput
  98. */
  99. birthday?: Date | null;
  100. /**
  101. * 民族
  102. * @type {string}
  103. * @memberof UpdateUserInput
  104. */
  105. nation?: string | null;
  106. /**
  107. * 手机号码
  108. * @type {string}
  109. * @memberof UpdateUserInput
  110. */
  111. phone?: string | null;
  112. /**
  113. *
  114. * @type {CardTypeEnum}
  115. * @memberof UpdateUserInput
  116. */
  117. cardType?: CardTypeEnum;
  118. /**
  119. * 身份证号
  120. * @type {string}
  121. * @memberof UpdateUserInput
  122. */
  123. idCardNum?: string | null;
  124. /**
  125. * 邮箱
  126. * @type {string}
  127. * @memberof UpdateUserInput
  128. */
  129. email?: string | null;
  130. /**
  131. * 地址
  132. * @type {string}
  133. * @memberof UpdateUserInput
  134. */
  135. address?: string | null;
  136. /**
  137. *
  138. * @type {CultureLevelEnum}
  139. * @memberof UpdateUserInput
  140. */
  141. cultureLevel?: CultureLevelEnum;
  142. /**
  143. * 政治面貌
  144. * @type {string}
  145. * @memberof UpdateUserInput
  146. */
  147. politicalOutlook?: string | null;
  148. /**
  149. * 毕业院校
  150. * @type {string}
  151. * @memberof UpdateUserInput
  152. */
  153. college?: string | null;
  154. /**
  155. * 办公电话
  156. * @type {string}
  157. * @memberof UpdateUserInput
  158. */
  159. officePhone?: string | null;
  160. /**
  161. * 紧急联系人
  162. * @type {string}
  163. * @memberof UpdateUserInput
  164. */
  165. emergencyContact?: string | null;
  166. /**
  167. * 紧急联系人电话
  168. * @type {string}
  169. * @memberof UpdateUserInput
  170. */
  171. emergencyPhone?: string | null;
  172. /**
  173. * 紧急联系人地址
  174. * @type {string}
  175. * @memberof UpdateUserInput
  176. */
  177. emergencyAddress?: string | null;
  178. /**
  179. * 个人简介
  180. * @type {string}
  181. * @memberof UpdateUserInput
  182. */
  183. introduction?: string | null;
  184. /**
  185. * 排序
  186. * @type {number}
  187. * @memberof UpdateUserInput
  188. */
  189. order?: number;
  190. /**
  191. *
  192. * @type {StatusEnum}
  193. * @memberof UpdateUserInput
  194. */
  195. status?: StatusEnum;
  196. /**
  197. * 备注
  198. * @type {string}
  199. * @memberof UpdateUserInput
  200. */
  201. remark?: string | null;
  202. /**
  203. *
  204. * @type {AccountTypeEnum}
  205. * @memberof UpdateUserInput
  206. */
  207. accountType?: AccountTypeEnum;
  208. /**
  209. * 机构Id
  210. * @type {number}
  211. * @memberof UpdateUserInput
  212. */
  213. orgId?: number;
  214. /**
  215. *
  216. * @type {SysOrg}
  217. * @memberof UpdateUserInput
  218. */
  219. sysOrg?: SysOrg;
  220. /**
  221. * 职位Id
  222. * @type {number}
  223. * @memberof UpdateUserInput
  224. */
  225. posId?: number;
  226. /**
  227. *
  228. * @type {SysPos}
  229. * @memberof UpdateUserInput
  230. */
  231. sysPos?: SysPos;
  232. /**
  233. * 工号
  234. * @type {string}
  235. * @memberof UpdateUserInput
  236. */
  237. jobNum?: string | null;
  238. /**
  239. * 职级
  240. * @type {string}
  241. * @memberof UpdateUserInput
  242. */
  243. posLevel?: string | null;
  244. /**
  245. * 入职日期
  246. * @type {Date}
  247. * @memberof UpdateUserInput
  248. */
  249. joinDate?: Date | null;
  250. /**
  251. * 最新登录Ip
  252. * @type {string}
  253. * @memberof UpdateUserInput
  254. */
  255. lastLoginIp?: string | null;
  256. /**
  257. * 最新登录地点
  258. * @type {string}
  259. * @memberof UpdateUserInput
  260. */
  261. lastLoginAddress?: string | null;
  262. /**
  263. * 最新登录时间
  264. * @type {Date}
  265. * @memberof UpdateUserInput
  266. */
  267. lastLoginTime?: Date | null;
  268. /**
  269. * 最新登录设备
  270. * @type {string}
  271. * @memberof UpdateUserInput
  272. */
  273. lastLoginDevice?: string | null;
  274. /**
  275. * 电子签名
  276. * @type {string}
  277. * @memberof UpdateUserInput
  278. */
  279. signature?: string | null;
  280. /**
  281. * 账号
  282. * @type {string}
  283. * @memberof UpdateUserInput
  284. */
  285. account: string;
  286. /**
  287. * 真实姓名
  288. * @type {string}
  289. * @memberof UpdateUserInput
  290. */
  291. realName: string;
  292. /**
  293. * 角色集合
  294. * @type {Array<number>}
  295. * @memberof UpdateUserInput
  296. */
  297. roleIdList?: Array<number> | null;
  298. /**
  299. * 扩展机构集合
  300. * @type {Array<SysUserExtOrg>}
  301. * @memberof UpdateUserInput
  302. */
  303. extOrgIdList?: Array<SysUserExtOrg> | null;
  304. }