// // BaseResponse.swift // iOSFirst // // Created by 孙宇峰 on 2023/2/24. // import Foundation import HandyJSON struct BaseResponse: HandyJSON{ //用户表 var code:Int? //姓名 var msg:String? //登录帐号 var data:T? }