package tmodel import ( "joylink.club/rtsssimulation/system" ) // 设备模型基础信息 type DeviceModel struct { // 设备id DevId string // 设备类型 DevType system.DeviceType } func (me *DeviceModel) Id() string { return me.DevId } func (me *DeviceModel) Type() system.DeviceType { return me.DevType }