model.d.ts 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. declare namespace API_DICT_TYPE {
  2. namespace P {
  3. interface IAdd {
  4. id: ID
  5. /**
  6. * 描述
  7. */
  8. description: string
  9. /**
  10. * 类型
  11. */
  12. dictType: string
  13. /**
  14. * 备注
  15. */
  16. remarks: string
  17. }
  18. }
  19. namespace R {
  20. interface IPage {
  21. /**
  22. * 创建人
  23. */
  24. createBy: string
  25. /**
  26. * 创建时间
  27. */
  28. createTime: string
  29. /**
  30. * 描述
  31. */
  32. description: string
  33. /**
  34. * 类型
  35. */
  36. dictType: string
  37. id: string
  38. /**
  39. * 备注
  40. */
  41. remarks: string
  42. /**
  43. * 修改人
  44. */
  45. updateBy: string
  46. /**
  47. * 更新时间
  48. */
  49. updateTime: string
  50. }
  51. }
  52. }
  53. declare namespace API_DICT {
  54. namespace P {
  55. interface IAdd {
  56. id: string
  57. dictId: string
  58. label: string
  59. dictType: string
  60. description: string
  61. sortOrder: number
  62. createBy: string
  63. updateBy: string
  64. createTime: string
  65. updateTime: string
  66. remarks: string
  67. delFlag: string
  68. itemValue: string
  69. }
  70. interface IPage {
  71. dictId: ID
  72. }
  73. }
  74. namespace R {
  75. interface IPage {
  76. id: string
  77. dictId: string
  78. label: string
  79. dictType: string
  80. description: string
  81. sortOrder: number
  82. createBy: string
  83. updateBy: string
  84. createTime: string
  85. updateTime: string
  86. remarks: string
  87. delFlag: string
  88. value: string
  89. }
  90. }
  91. }
  92. declare namespace API_PARAM {
  93. namespace P {
  94. interface IAdd {
  95. /**
  96. * 键
  97. */
  98. publicKey: string
  99. /**
  100. * 名称
  101. */
  102. publicName: string
  103. /**
  104. * 类型,0未知,1系统,2业务
  105. */
  106. publicType: string
  107. /**
  108. * 值
  109. */
  110. publicValue: string
  111. /**
  112. * 系统标识,0非系统,1系统
  113. */
  114. systemFlag: string
  115. /**
  116. * 校验码
  117. */
  118. validateCode: string
  119. }
  120. interface IPage {
  121. /**
  122. * 键
  123. */
  124. publicKey: string
  125. /**
  126. * 名称
  127. */
  128. publicName: string
  129. }
  130. }
  131. namespace R {
  132. interface IPage {
  133. /**
  134. * 创建人
  135. */
  136. createBy: string
  137. /**
  138. * 创建时间
  139. */
  140. createTime: string
  141. /**
  142. * 删除标记,0未删除,1已删除
  143. */
  144. delFlag: string
  145. /**
  146. * 编号
  147. */
  148. id: number
  149. /**
  150. * 键
  151. */
  152. publicKey: string
  153. /**
  154. * 名称
  155. */
  156. publicName: string
  157. /**
  158. * 类型,0未知,1系统,2业务
  159. */
  160. publicType: string
  161. /**
  162. * 值
  163. */
  164. publicValue: string
  165. /**
  166. * 状态,0禁用,1启用
  167. */
  168. status: string
  169. /**
  170. * 系统标识,0非系统,1系统
  171. */
  172. systemFlag: string
  173. /**
  174. * 修改人
  175. */
  176. updateBy: string
  177. /**
  178. * 更新时间
  179. */
  180. updateTime: string
  181. /**
  182. * 校验码
  183. */
  184. validateCode: string
  185. }
  186. }
  187. }
  188. declare namespace API_LOG {
  189. namespace P {
  190. interface IPage {
  191. /**
  192. * 创建人
  193. */
  194. createBy: string
  195. /**
  196. * 创建时间
  197. */
  198. createTime: string
  199. /**
  200. * 请求方法
  201. */
  202. method: string
  203. /**
  204. * 日志标题
  205. */
  206. title: string
  207. /**
  208. * 修改人
  209. */
  210. updateBy: string
  211. /**
  212. * 更新时间
  213. */
  214. updateTime: string
  215. }
  216. }
  217. namespace R {
  218. interface IPage {
  219. /**
  220. * 创建人
  221. */
  222. createBy: string
  223. /**
  224. * 创建时间
  225. */
  226. createTime: string
  227. /**
  228. * 删除标志
  229. */
  230. delFlag: string
  231. /**
  232. * 编号
  233. */
  234. id: number
  235. /**
  236. * 日志类型
  237. */
  238. logType: string
  239. /**
  240. * 请求方法
  241. */
  242. method: string
  243. /**
  244. * 远程地址
  245. */
  246. remoteAddr: string
  247. /**
  248. * 请求URI
  249. */
  250. requestUri: string
  251. /**
  252. * 服务ID
  253. */
  254. serviceId: string
  255. /**
  256. * 执行时间
  257. */
  258. time: number
  259. /**
  260. * 日志标题
  261. */
  262. title: string
  263. /**
  264. * 修改人
  265. */
  266. updateBy: string
  267. /**
  268. * 更新时间
  269. */
  270. updateTime: string
  271. }
  272. }
  273. }