JPushDevice.swift 388 B

1234567891011121314151617181920212223
  1. //
  2. // JPushDevice.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2019/11/11.
  6. // Copyright © 2019 zoneland. All rights reserved.
  7. //
  8. import Foundation
  9. // x_jpush_assemble_control 设备绑定对象
  10. class JPushDevice: NSObject,DataModel {
  11. @objc var deviceName : String?
  12. @objc var deviceType : String? = "ios"
  13. override required init() {
  14. }
  15. }