12345678910111213141516171819202122232425262728293031323334 |
- //
- // JPushDevice.swift
- // O2Platform
- //
- // Created by FancyLou on 2019/11/11.
- // Copyright © 2019 zoneland. All rights reserved.
- //
- import Foundation
- // x_jpush_assemble_control 设备绑定对象
- class JPushDevice: NSObject,DataModel {
-
- @objc var deviceName : String?
- @objc var deviceType : String? = "ios"
- @objc var pushType : String? = "jpush"
- override required init() {
-
- }
-
-
- }
- class JPushConfig: NSObject,DataModel {
-
- @objc var pushType : String? = "jpush"
- override required init() {
-
- }
-
-
- }
|