// // DZSHViewController.swift // GeliBusinessPlatform // // Created by junye lu on 2021/3/13. // Copyright © 2021 junye lu. All rights reserved. // import UIKit class DZSHViewController: BaseViewController { @IBOutlet weak var listView: UITableView! var keyword = "" var isUpData = false{ didSet{ if !isUpData { if listView != nil { listView.mj_header?.beginRefreshing() } } } } var startTime :Int? = 0 var endTime :Int? = 0 //MARK:--VC 初始化 convenience init(title: String) { self.init(title: title, content: "") } init(title: String, content: String) { super.init(nibName: nil, bundle: nil) self.title = title } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } /* // MARK: - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation override func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Get the new view controller using segue.destination. // Pass the selected object to the new view controller. } */ }