sys-log-ex.ts 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  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 { LogLevel } from './log-level';
  15. /**
  16. * 系统异常日志表
  17. *
  18. * @export
  19. * @interface SysLogEx
  20. */
  21. export interface SysLogEx {
  22. /**
  23. * 雪花Id
  24. *
  25. * @type {number}
  26. * @memberof SysLogEx
  27. */
  28. id?: number;
  29. /**
  30. * 创建时间
  31. *
  32. * @type {Date}
  33. * @memberof SysLogEx
  34. */
  35. createTime?: Date;
  36. /**
  37. * 更新时间
  38. *
  39. * @type {Date}
  40. * @memberof SysLogEx
  41. */
  42. updateTime?: Date | null;
  43. /**
  44. * 创建者Id
  45. *
  46. * @type {number}
  47. * @memberof SysLogEx
  48. */
  49. createUserId?: number | null;
  50. /**
  51. * 创建者姓名
  52. *
  53. * @type {string}
  54. * @memberof SysLogEx
  55. */
  56. createUserName?: string | null;
  57. /**
  58. * 修改者Id
  59. *
  60. * @type {number}
  61. * @memberof SysLogEx
  62. */
  63. updateUserId?: number | null;
  64. /**
  65. * 修改者姓名
  66. *
  67. * @type {string}
  68. * @memberof SysLogEx
  69. */
  70. updateUserName?: string | null;
  71. /**
  72. * 软删除
  73. *
  74. * @type {boolean}
  75. * @memberof SysLogEx
  76. */
  77. isDelete?: boolean;
  78. /**
  79. * 租户Id
  80. *
  81. * @type {number}
  82. * @memberof SysLogEx
  83. */
  84. tenantId?: number | null;
  85. /**
  86. * 模块名称
  87. *
  88. * @type {string}
  89. * @memberof SysLogEx
  90. */
  91. controllerName?: string | null;
  92. /**
  93. * 方法名称
  94. *
  95. * @type {string}
  96. * @memberof SysLogEx
  97. */
  98. actionName?: string | null;
  99. /**
  100. * 显示名称
  101. *
  102. * @type {string}
  103. * @memberof SysLogEx
  104. */
  105. displayTitle?: string | null;
  106. /**
  107. * 执行状态
  108. *
  109. * @type {string}
  110. * @memberof SysLogEx
  111. */
  112. status?: string | null;
  113. /**
  114. * IP地址
  115. *
  116. * @type {string}
  117. * @memberof SysLogEx
  118. */
  119. remoteIp?: string | null;
  120. /**
  121. * 登录地点
  122. *
  123. * @type {string}
  124. * @memberof SysLogEx
  125. */
  126. location?: string | null;
  127. /**
  128. * 经度
  129. *
  130. * @type {number}
  131. * @memberof SysLogEx
  132. */
  133. longitude?: number | null;
  134. /**
  135. * 维度
  136. *
  137. * @type {number}
  138. * @memberof SysLogEx
  139. */
  140. latitude?: number | null;
  141. /**
  142. * 浏览器
  143. *
  144. * @type {string}
  145. * @memberof SysLogEx
  146. */
  147. browser?: string | null;
  148. /**
  149. * 操作系统
  150. *
  151. * @type {string}
  152. * @memberof SysLogEx
  153. */
  154. os?: string | null;
  155. /**
  156. * 操作用时
  157. *
  158. * @type {number}
  159. * @memberof SysLogEx
  160. */
  161. elapsed?: number | null;
  162. /**
  163. * 日志时间
  164. *
  165. * @type {Date}
  166. * @memberof SysLogEx
  167. */
  168. logDateTime?: Date | null;
  169. /**
  170. * @type {LogLevel}
  171. * @memberof SysLogEx
  172. */
  173. logLevel?: LogLevel;
  174. /**
  175. * 账号
  176. *
  177. * @type {string}
  178. * @memberof SysLogEx
  179. */
  180. account?: string | null;
  181. /**
  182. * 真实姓名
  183. *
  184. * @type {string}
  185. * @memberof SysLogEx
  186. */
  187. realName?: string | null;
  188. /**
  189. * 请求方式
  190. *
  191. * @type {string}
  192. * @memberof SysLogEx
  193. */
  194. httpMethod?: string | null;
  195. /**
  196. * 请求地址
  197. *
  198. * @type {string}
  199. * @memberof SysLogEx
  200. */
  201. requestUrl?: string | null;
  202. /**
  203. * 请求参数
  204. *
  205. * @type {string}
  206. * @memberof SysLogEx
  207. */
  208. requestParam?: string | null;
  209. /**
  210. * 返回结果
  211. *
  212. * @type {string}
  213. * @memberof SysLogEx
  214. */
  215. returnResult?: string | null;
  216. /**
  217. * 事件Id
  218. *
  219. * @type {number}
  220. * @memberof SysLogEx
  221. */
  222. eventId?: number | null;
  223. /**
  224. * 线程Id
  225. *
  226. * @type {number}
  227. * @memberof SysLogEx
  228. */
  229. threadId?: number | null;
  230. /**
  231. * 请求跟踪Id
  232. *
  233. * @type {string}
  234. * @memberof SysLogEx
  235. */
  236. traceId?: string | null;
  237. /**
  238. * 异常信息
  239. *
  240. * @type {string}
  241. * @memberof SysLogEx
  242. */
  243. exception?: string | null;
  244. /**
  245. * 日志消息Json
  246. *
  247. * @type {string}
  248. * @memberof SysLogEx
  249. */
  250. message?: string | null;
  251. }