You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
846 B
TypeScript
45 lines
846 B
TypeScript
/**模型类别 */
|
|
|
|
// 模型列表列表分页
|
|
export const mockGetModelCategoryListData = {
|
|
data: {
|
|
list: [
|
|
{
|
|
id: 1,
|
|
createTime: '2023-10-19T14:42:20.743086+08:00',
|
|
updateTime: '2023-10-19T14:42:20.743086+08:00',
|
|
name: 'ocr识别1',
|
|
code: 'MC00001',
|
|
remark: '',
|
|
},
|
|
{
|
|
id: 2,
|
|
createTime: '2023-10-20T13:55:51.395842+08:00',
|
|
updateTime: '2023-10-20T13:55:51.395842+08:00',
|
|
name: '目标识别',
|
|
code: 'MC00002',
|
|
remark: '',
|
|
},
|
|
],
|
|
total: 2,
|
|
page: 1,
|
|
pageSize: 10,
|
|
},
|
|
};
|
|
|
|
// 模型列表不分页
|
|
export const mockGetModelCategoryFkSelectData = {
|
|
data: {
|
|
list: [
|
|
{
|
|
name: 'ocr识别1',
|
|
id: 1,
|
|
},
|
|
{
|
|
name: '目标识别',
|
|
id: 2,
|
|
},
|
|
],
|
|
}
|
|
};
|