testDto.ts 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /** 查询信息输出 */
  2. export interface ResultOutputPageOutputBoardTestRecordDto{
  3. /** 是否成功标记 */
  4. success?: boolean
  5. /** 编码 */
  6. code?: string | null
  7. /** 消息 */
  8. msg?: string | null
  9. /** 数据 */
  10. data?:PageOutputBoardTestRecordDto[] | null
  11. }
  12. export interface PageOutputBoardTestRecordDto{
  13. /**
  14. * 数据总数
  15. * @format int64
  16. */
  17. total?: number
  18. /** 数据 */
  19. list?: BoardTestRecordDto[] | null
  20. }
  21. export interface BoardTestRecordDto{
  22. /** 序列号 */
  23. serno?: string
  24. /** 外部序列号 */
  25. exserno?: string
  26. /** 主板类型 */
  27. boardType?: integer
  28. /** 主板名称 */
  29. boardName?: string
  30. /** 功能码 */
  31. functionCode?: integer
  32. /** 功能名称 */
  33. functionName?: string
  34. /** 检测类型 */
  35. testType?: integer
  36. /** 检测时间 */
  37. time?: string
  38. /** 测试结果 */
  39. result?: integer
  40. /** 测试功能数 */
  41. testNum?: integer
  42. /** 测试成功功能数 */
  43. testSuccessNum?: integer
  44. /** 测试员 */
  45. user?: string
  46. /** 测试耗时 */
  47. duration?: integer
  48. /** 备注 */
  49. info?: string
  50. }
  51. export interface pageInput {
  52. /**当前页数 */
  53. CurrentPage: number | any
  54. /**展示页数 */
  55. PageSize: number | any
  56. }