QSLSubscriptionModel.swift 502 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // QSLSubscriptionModel.swift
  3. // QuickSearchLocation
  4. //
  5. // Created by Destiny on 2025/4/3.
  6. //
  7. import MoyaMapper
  8. import SwiftyJSON
  9. struct QSLSubscriptionModel: Modelable {
  10. var outTradeNo: String = ""
  11. var subscriptionGroup: String = ""
  12. var userId: String = ""
  13. var autoRenewStatus: Int = 0
  14. var renewItemId: Int = 0
  15. var expireTimestamp: Int = 0
  16. var expired: Bool = false
  17. mutating func mapping(_ json: JSON) {
  18. }
  19. }