// // TerminalListCell2.h // LN_School // // Created by EchoShacolee on 2017/8/18. // Copyright © 2017年 Danson. All rights reserved. // #import @interface TerminalListCell2 : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *carNum; @property (weak, nonatomic) IBOutlet UILabel *isOnline; @property (weak, nonatomic) IBOutlet UILabel *type; @property (weak, nonatomic) IBOutlet UILabel *isRegister; @property(nonatomic,strong)NSDictionary *dic; +(instancetype)cellForTableView:(UITableView *)tableView; @end