// // BusinessTableViewCell.swift // xingchuangke // // Created by Virgil on 2019/3/22. // Copyright © 2019 Virgil. All rights reserved. // import UIKit class BusinessTableViewCell: UITableViewCell { @IBOutlet weak var lblType: UILabel! @IBOutlet weak var lblPayName: UILabel! @IBOutlet weak var lblMoney: UILabel! @IBOutlet weak var lblDate: UILabel! @IBOutlet weak var lblName: UILabel! override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func setSelected(_ selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state } }