53 lines
943 B
TypeScript
53 lines
943 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 安全巡检部位
|
|
*/
|
|
export interface TowerSafety {
|
|
// 参数ID
|
|
placeSafetyId?: number;
|
|
// 部位编码
|
|
placeCode?: string;
|
|
// 设备类型
|
|
equipmentType?: string;
|
|
// 部位名称
|
|
name?: string;
|
|
// 检查标准
|
|
checkStandard?: string;
|
|
// 部位类型
|
|
type?: string;
|
|
// 推送目标系统
|
|
pushSystem?: string;
|
|
// 其它项目对应值
|
|
other_param?: string;
|
|
// 附件
|
|
files?: string;
|
|
// 是否默认显示
|
|
isShow?: boolean;
|
|
// 用户ID
|
|
userId?: string;
|
|
// 排序
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 更新时间
|
|
updateTime?: string;
|
|
//
|
|
key?: number;
|
|
value?: number;
|
|
index?: number;
|
|
}
|
|
|
|
/**
|
|
* 型号分类搜索条件
|
|
*/
|
|
export interface TowerSafetyParam extends PageParam {
|
|
name?: string;
|
|
placeCode?: string;
|
|
equipmentType?: string;
|
|
}
|