// 环境记录单list类型 export interface IEnvironmental { environmentCode: string // 记录单编号 roomNumber: string // 房间号 recorder: string // 记录人 temperature: string // 温度(℃) humidity: string // 湿度 outputVoltage: string // 输出电压(V) zeroGroundVoltage: string // 零地电压(V) remark: string // 备注 recordTime: string // 记录时间 createUser: string // 创建人 id: string // 主键id } // 房间号模拟下拉框数据类型 export interface selectionListItem { value: string // 值 label: string // lable }