jsdw_ios/QuickLocation/Model/SystemResponse.swift

28 lines
459 B
Swift

//
// SystemResponse.swift
// QuickLocation
//
// Created by on 2026/5/26.
//
import Foundation
import ObjectMapper
///
struct SmsCodeResponse: BaseModelProtocol {
//
var code: String?
//
var message: String?
//
var result: Any?
init?(map: Map) {}
mutating func mapping(map: Map) {
code <- map["code"]
message <- map["msg"]
result <- map["data"]
}
}