Files
admin-vben5/apps/web-antd/src/api/property/accessControl/model.d.ts
2025-06-18 16:50:58 +08:00

235 lines
2.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { PageQuery, BaseEntity } from '#/api/common';
export interface AccessControlVO {
/**
* 主键
*/
id: string | number;
/**
* 门禁设备编码
*/
accessCode: string;
/**
* 门禁名称
*/
accessName: string;
/**
* 园区编码
*/
communityCode: string;
/**
* 建筑编码
*/
buildingCode: string;
/**
* 门禁设备ip
*/
accessIp: string;
/**
* 端口
*/
accessPort: number;
/**
* 门禁设备类型
*/
accssType: number;
/**
* 工厂编码
*/
factoryCode: string;
/**
* 控制卡类型1-系统2-E8
*/
controlType: number;
/**
* 控制卡类型编码
*/
controlCode: string;
/**
* 外部编码
*/
outCode: string;
/**
* 组织编码
*/
orgCode: string;
/**
* 数据状态1有效0无效
*/
dataState: number;
/**
* 搜索值
*/
searchValue: string;
}
export interface AccessControlForm extends BaseEntity {
/**
* 主键
*/
id?: string | number;
/**
* 门禁设备编码
*/
accessCode?: string;
/**
* 门禁名称
*/
accessName?: string;
/**
* 园区编码
*/
communityCode?: string;
/**
* 建筑编码
*/
buildingCode?: string;
/**
* 门禁设备ip
*/
accessIp?: string;
/**
* 端口
*/
accessPort?: number;
/**
* 门禁设备类型
*/
accssType?: number;
/**
* 工厂编码
*/
factoryCode?: string;
/**
* 控制卡类型1-系统2-E8
*/
controlType?: number;
/**
* 控制卡类型编码
*/
controlCode?: string;
/**
* 外部编码
*/
outCode?: string;
/**
* 组织编码
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
/**
* 搜索值
*/
searchValue?: string;
}
export interface AccessControlQuery extends PageQuery {
/**
* 门禁设备编码
*/
accessCode?: string;
/**
* 门禁名称
*/
accessName?: string;
/**
* 园区编码
*/
communityCode?: string;
/**
* 建筑编码
*/
buildingCode?: string;
/**
* 门禁设备ip
*/
accessIp?: string;
/**
* 端口
*/
accessPort?: number;
/**
* 门禁设备类型
*/
accssType?: number;
/**
* 工厂编码
*/
factoryCode?: string;
/**
* 控制卡类型1-系统2-E8
*/
controlType?: number;
/**
* 控制卡类型编码
*/
controlCode?: string;
/**
* 外部编码
*/
outCode?: string;
/**
* 组织编码
*/
orgCode?: string;
/**
* 数据状态1有效0无效
*/
dataState?: number;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
}