AlgorithmConfigTrack.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import { PageQuery, BaseEntity } from '@/api/interface/index'
  2. export interface AlgorithmConfigTrackVO extends BaseEntity {
  3. /**
  4. * 主键ID
  5. */
  6. id: string | number
  7. /**
  8. * 类型
  9. */
  10. type: string
  11. /**
  12. * 父id
  13. */
  14. parentId: string | number
  15. /**
  16. * 分系统
  17. */
  18. subsystem: string
  19. /**
  20. * 算法名称
  21. */
  22. algorithmName: string
  23. /**
  24. * 算法地址
  25. */
  26. algorithmAddress: string
  27. /**
  28. * 参数配置
  29. */
  30. parameterConfig: string
  31. /**
  32. * 备注
  33. */
  34. remarks: string
  35. /**
  36. * 系统
  37. */
  38. system: string
  39. }
  40. export interface AlgorithmConfigTrackForm {
  41. /**
  42. * 主键ID
  43. */
  44. id?: string | number
  45. /**
  46. * 类型
  47. */
  48. type?: string
  49. /**
  50. * 父id
  51. */
  52. parentId?: string | number
  53. /**
  54. * 分系统
  55. */
  56. subsystem?: string
  57. /**
  58. * 算法名称
  59. */
  60. algorithmName?: string
  61. /**
  62. * 算法地址
  63. */
  64. algorithmAddress?: string
  65. /**
  66. * 参数配置
  67. */
  68. parameterConfig?: string
  69. /**
  70. * 备注
  71. */
  72. remarks?: string
  73. /**
  74. * 乐观锁
  75. */
  76. version?: number
  77. /**
  78. * 系统
  79. */
  80. system?: string
  81. }
  82. export interface AlgorithmConfigTrackQuery extends PageQuery {
  83. /**
  84. * 类型
  85. */
  86. type?: string
  87. /**
  88. * 父id
  89. */
  90. parentId?: string | number
  91. /**
  92. * 分系统
  93. */
  94. subsystem?: string
  95. /**
  96. * 算法名称
  97. */
  98. algorithmName?: string
  99. /**
  100. * 算法地址
  101. */
  102. algorithmAddress?: string
  103. /**
  104. * 参数配置
  105. */
  106. parameterConfig?: string
  107. /**
  108. * 备注
  109. */
  110. remarks?: string
  111. /**
  112. * 系统
  113. */
  114. system?: string
  115. /**
  116. * 日期范围参数
  117. */
  118. params?: any
  119. }