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.
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
1 year ago
|
/*
|
||
|
* @Author: donghao donghao@supervision.ltd
|
||
|
* @Date: 2024-01-25 16:53:24
|
||
|
* @LastEditors: donghao donghao@supervision.ltd
|
||
|
* @LastEditTime: 2024-01-25 17:34:49
|
||
|
* @FilePath: \general-ai-platform-web\mock\pools\deviceCategoryData.ts
|
||
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||
|
*/
|
||
|
|
||
|
/**设备类别- */
|
||
|
|
||
|
// 设备类别列表分页
|
||
|
export const mockGetDeviceCategoryListData = {
|
||
|
data: {
|
||
|
list: [
|
||
|
{
|
||
|
id: 1,
|
||
|
createTime: '2023-10-17T10:35:41.14308+08:00',
|
||
|
updateTime: '2023-10-17T10:35:41.14308+08:00',
|
||
|
name: '监控1',
|
||
|
code: 'DC00002',
|
||
|
remark: '',
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
|
createTime: '2023-10-17T10:40:28.292883+08:00',
|
||
|
updateTime: '2023-10-26T11:02:51.356036+08:00',
|
||
|
name: '控制器',
|
||
|
code: 'DC00003',
|
||
|
remark: '',
|
||
|
},
|
||
|
],
|
||
|
total: 2,
|
||
|
page: 1,
|
||
|
pageSize: 10,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
// 设备类别选项列表不分页
|
||
|
export const mockGetDeviceCategoryFkSelectData = {
|
||
|
data: {
|
||
|
list: [
|
||
|
{
|
||
|
name: '监控1',
|
||
|
id: 1,
|
||
|
},
|
||
|
{
|
||
|
name: '控制器',
|
||
|
id: 2,
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
};
|