wy
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface AccessControlVO {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 门禁设备编码
|
||||
*/
|
||||
@@ -27,7 +32,7 @@ export interface AccessControlVO {
|
||||
accessIp: string;
|
||||
|
||||
/**
|
||||
* 设备端口
|
||||
* 端口
|
||||
*/
|
||||
accessPort: number;
|
||||
|
||||
@@ -37,7 +42,7 @@ export interface AccessControlVO {
|
||||
accssType: number;
|
||||
|
||||
/**
|
||||
* 工程编号
|
||||
* 工厂编码
|
||||
*/
|
||||
factoryCode: string;
|
||||
|
||||
@@ -66,9 +71,19 @@ export interface AccessControlVO {
|
||||
*/
|
||||
dataState: number;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue: string;
|
||||
|
||||
}
|
||||
|
||||
export interface AccessControlForm extends BaseEntity {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 门禁设备编码
|
||||
*/
|
||||
@@ -95,7 +110,7 @@ export interface AccessControlForm extends BaseEntity {
|
||||
accessIp?: string;
|
||||
|
||||
/**
|
||||
* 设备端口
|
||||
* 端口
|
||||
*/
|
||||
accessPort?: number;
|
||||
|
||||
@@ -105,7 +120,7 @@ export interface AccessControlForm extends BaseEntity {
|
||||
accssType?: number;
|
||||
|
||||
/**
|
||||
* 工程编号
|
||||
* 工厂编码
|
||||
*/
|
||||
factoryCode?: string;
|
||||
|
||||
@@ -134,6 +149,11 @@ export interface AccessControlForm extends BaseEntity {
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface AccessControlQuery extends PageQuery {
|
||||
@@ -163,7 +183,7 @@ export interface AccessControlQuery extends PageQuery {
|
||||
accessIp?: string;
|
||||
|
||||
/**
|
||||
* 设备端口
|
||||
* 端口
|
||||
*/
|
||||
accessPort?: number;
|
||||
|
||||
@@ -173,7 +193,7 @@ export interface AccessControlQuery extends PageQuery {
|
||||
accssType?: number;
|
||||
|
||||
/**
|
||||
* 工程编号
|
||||
* 工厂编码
|
||||
*/
|
||||
factoryCode?: string;
|
||||
|
||||
@@ -202,6 +222,11 @@ export interface AccessControlQuery extends PageQuery {
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
|
Reference in New Issue
Block a user