Files
admin-vben5/apps/web-antd/src/api/property/meter/lightInfo/model.d.ts

135 lines
1.7 KiB
TypeScript
Raw Normal View History

import type { PageQuery, BaseEntity } from '#/api/common';
export interface LightInfoVO {
/**
* id
*/
id: string | number;
/**
*
*/
locationRemark: string;
/**
* 01
*/
isOn: boolean;
/**
*
*/
code: number;
/**
*
*/
communityId: string | number;
/**
*
*/
buildingId: string | number;
/**
*
*/
unitId: string | number;
/**
* ID
*/
floorId: string | number;
/**
*
*/
floorName: string;
}
export interface LightInfoForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
locationRemark?: string;
/**
* 01
*/
isOn: boolean;
/**
*
*/
code?: number;
/**
*
*/
communityId?: string | number;
/**
*
*/
buildingId?: string | number;
/**
*
*/
unitId?: string | number;
/**
* ID
*/
floorId?: string | number;
}
export interface LightInfoQuery extends PageQuery {
/**
*
*/
locationRemark?: string;
/**
* 01
*/
isOn?: number;
/**
*
*/
code?: number;
/**
*
*/
communityId?: string | number;
/**
*
*/
buildingId?: string | number;
/**
*
*/
unitId?: string | number;
/**
* ID
*/
floorId?: string | number;
/**
*
*/
params?: any;
}