提交代码
This commit is contained in:
39
src/api/hjm/hjmFence/model/index.ts
Normal file
39
src/api/hjm/hjmFence/model/index.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user