完成合同管理模块和公共参数模块

This commit is contained in:
gxwebsoft
2023-06-08 19:33:24 +08:00
parent 7ee10c16c7
commit f5cb3dc489
31 changed files with 3195 additions and 140 deletions

View 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;
}