boardFunctionResultDto.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /** 查询信息输出 */
  2. export interface ResultOutputPageOutputBoardFunctionResultDto{
  3. /** 是否成功标记 */
  4. success?: boolean
  5. /** 编码 */
  6. code?: string | null
  7. /** 消息 */
  8. msg?: string | null
  9. /** 数据 */
  10. data?:PageOutputBoardFunctionResultDto[] | null
  11. }
  12. export interface PageOutputBoardFunctionResultDto{
  13. /**
  14. * 数据总数
  15. * @format int64
  16. */
  17. total?: number
  18. /** 数据 */
  19. list?: BoardFunctionResultDto[] | null
  20. }
  21. export interface BoardFunctionResultDto{
  22. /** 序列号 */
  23. serno?: string
  24. /** 外部序列号 */
  25. exserno?: string
  26. /** 主板类型 */
  27. boardType?: number
  28. /** 功能码 */
  29. code?: number
  30. /** 测试结果 */
  31. result?: number
  32. /** 是否一次通过 */
  33. onceTestPass?: number
  34. /** 测试次数 */
  35. testTimes?: number
  36. /** 成功次数 */
  37. successTimes?: number
  38. /** 创建时间 */
  39. createTime?: string
  40. /** 最新测试时间 */
  41. lastTestTime?: string
  42. /** 最新测试员 */
  43. lastTestUser?: string
  44. /** 测试总耗时 */
  45. duration?: number
  46. /** 备注 */
  47. info?: string
  48. }
  49. export interface pageInput {
  50. /**当前页数 */
  51. CurrentPage: number | any
  52. /**展示页数 */
  53. PageSize: number | any
  54. }