/**
* Request
*/
export interface Request {
/**
* 关键字过滤
*/
filter?: string;
/**
* 每页大小
*/
pagecount: number;
/**
* 页索引
*/
pageindex: number;
[property: string]: any;
}curl --location --request POST 'http://127.0.0.1:9307/cypnest/part/list/page' \
--header 'Content-Type: application/json' \
--data-raw '/**
* Request
*/
export interface Request {
/**
* 关键字过滤
*/
filter?: string;
/**
* 每页大小
*/
pagecount: number;
/**
* 页索引
*/
pageindex: number;
[property: string]: any;
}'{
"status": 0,
"msg": "string",
"data": {
"total": 0,
"list": [
{
"FileDesc": "string",
"FilePath": "string",
"FileType": "string",
"LastAccessTime": 0,
"LastAccessTimeStr": "string",
"Image64Str": "string"
}
]
}
}