// // QSLContactModel.swift // QuickSearchLocation // // Created by Destiny on 2024/12/12. // import MoyaMapper import SwiftyJSON struct QSLContactModel: Modelable { var contactId: Int = 0 var phone: String = "" var remark: String = "" var favor: Bool = false var createTime: Int = 0 mutating func mapping(_ json: JSON) { self.contactId = json["id"].intValue } }