SignsCell.h 412 B

123456789101112131415161718
  1. //
  2. // SignsCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/12.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SignsCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *timeLab;
  11. @property (weak, nonatomic) IBOutlet UILabel *typeLab;
  12. @property (weak, nonatomic) IBOutlet UILabel *phoneNum;
  13. -(void)updataWithDic:(NSDictionary *)dic;
  14. @end