提交代码

This commit is contained in:
2025-06-26 11:41:12 +08:00
commit d75fb55eec
396 changed files with 42172 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
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;
}