package common
type PhysicalModel struct {
// core:true 【是否绑定印控设备】是否绑定印控设备 【传参】 取值范围:true(绑定印控设备),false(不绑定印控设备)。
Binding *bool `json:"binding,omitempty"`
// core:true 【智能章筒型号】智能章筒型号。 【传参】 取值范围:QUNJE_THREE,QUNJE_FIVE,ZHANGIN,YUNXI,HUILANG_WORK;不传值默认为:QUNJE_THREE。
DeviceType string `json:"deviceType,omitempty"`
// core:true 【章筒识别码】章筒识别码 【传参】 当deviceType(智能章筒型号)传值为ZHANGIN(章管家智能印章),YUNXI(云玺智能印章)时章筒识别码必填。
DeviceId string `json:"deviceId,omitempty"`
// core:true 【蓝牙MAC地址】蓝牙MAC地址 【传参】 当binding(是否绑定印控设备)传值为true(绑定印控设备)时,蓝牙MAC地址必填。
Bluetooth string `json:"bluetooth,omitempty"`
// 【印章位置】印章位置 【作用】 可用于指定智能章筒的初始位置,后续将实时读取章筒的定位
Location string `json:"location,omitempty"`
PhysicalHuiLangCabinetModel *PhysicalHuiLangCabinetModel `json:"physicalHuiLangCabinetModel,omitempty"`
}