优惠券swift版马甲包

YMOtherHeaderModel.swift 478B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // YMOtherHeaderModel.swift
  3. // MvpGoods
  4. //
  5. // Created by 小花 on 2019/4/11.
  6. // Copyright © 2019 MVP. All rights reserved.
  7. //
  8. import UIKit
  9. import ObjectMapper
  10. class YMOtherHeaderModel: Mappable {
  11. var id: Int?
  12. var name: String?
  13. var img: String?
  14. init(){
  15. }
  16. required init?(map: Map) {
  17. }
  18. func mapping(map: Map) {
  19. id <- map["id"]
  20. name <- map["name"]
  21. img <- map["img"]
  22. }
  23. }