JPushDevice.swift 578 B

12345678910111213141516171819202122232425262728293031323334
  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. @objc var pushType : String? = "jpush"
  14. override required init() {
  15. }
  16. }
  17. class JPushConfig: NSObject,DataModel {
  18. @objc var pushType : String? = "jpush"
  19. override required init() {
  20. }
  21. }