完成合同管理模块和公共参数模块
This commit is contained in:
52
src/api/tower/param/safety/model/index.ts
Normal file
52
src/api/tower/param/safety/model/index.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user