Sign in

iOS Team / CNLiveMateCode · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CNLiveMateCode
  • metaCode
  • Classes
  • Common
  • Util
  • CNLiveCommonBaseModel.swift
  • 添加更改存储方式,订单搜索功能
    6b5d3459
    liushiyu authored
    2023-11-14 14:41:25 +0800  
    Browse Code »
CNLiveCommonBaseModel.swift 305 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//
//  CNLiveCommonBaseModel.swift
//  metaCode
//
//  Created by open on 2023/6/15.
//

import Foundation
import UIKit
import HandyJSON

class BaseModel: HandyJSON {
    
    required init() {}

    func mapping(mapper: HelpingMapper) {
        
    }
    
    func didFinishMapping() {
        
    }
}