123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /** 查询信息输出 */
- export interface ResultOutputPageOutputBoardTestRecordDto{
- /** 是否成功标记 */
- success?: boolean
- /** 编码 */
- code?: string | null
- /** 消息 */
- msg?: string | null
- /** 数据 */
- data?:PageOutputBoardTestRecordDto[] | null
- }
- export interface PageOutputBoardTestRecordDto{
- /**
- * 数据总数
- * @format int64
- */
- total?: number
- /** 数据 */
- list?: BoardTestRecordDto[] | null
- }
- export interface BoardTestRecordDto{
- /** 序列号 */
- serno?: string
- /** 外部序列号 */
- exserno?: string
- /** 主板类型 */
- boardType?: integer
- /** 主板名称 */
- boardName?: string
- /** 功能码 */
- functionCode?: integer
- /** 功能名称 */
- functionName?: string
- /** 检测类型 */
- testType?: integer
- /** 检测时间 */
- time?: string
- /** 测试结果 */
- result?: integer
- /** 测试功能数 */
- testNum?: integer
- /** 测试成功功能数 */
- testSuccessNum?: integer
- /** 测试员 */
- user?: string
- /** 测试耗时 */
- duration?: integer
- /** 备注 */
- info?: string
- }
- export interface pageInput {
- /**当前页数 */
- CurrentPage: number | any
- /**展示页数 */
- PageSize: number | any
- }
|