12345678910111213141516171819202122232425262728293031 |
- //
- // PosListTableViewCell.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/4/3.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class PosListTableViewCell: UITableViewCell {
- @IBOutlet weak var btnBottom: UIButton!
- @IBOutlet weak var lblBindDate: UILabel!
- @IBOutlet weak var lblShopName: UILabel!
- @IBOutlet weak var lblDate: UILabel!
- @IBOutlet weak var lblName: UILabel!
- @IBOutlet weak var lblState: UILabel!
- @IBOutlet weak var lblNo: 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
- }
- }
|