You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
643 B
39 lines
643 B
import type { PageParam } from '@/api/index';
|
|
|
|
/**
|
|
* 电子围栏
|
|
*/
|
|
export interface HjmFence {
|
|
// 自增ID
|
|
id?: number;
|
|
// 围栏名称
|
|
name?: string;
|
|
// 类型 0圆形 1方形
|
|
type?: number;
|
|
// 位置
|
|
location?: string;
|
|
// 经度
|
|
longitude?: number;
|
|
// 纬度
|
|
latitude?: number;
|
|
// 区域
|
|
district?: string;
|
|
// 轮廓
|
|
points?: string;
|
|
// 颜色
|
|
color?: string;
|
|
// 填充颜色
|
|
fillColor?: string;
|
|
// 圆角
|
|
radius?: number;
|
|
// 边框宽度
|
|
strokeWidth?: number;
|
|
}
|
|
|
|
/**
|
|
* 电子围栏搜索条件
|
|
*/
|
|
export interface HjmFenceParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|