PhysicalModel.go 1.2 KB

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