MessageTableCell.h 835 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MessageTableCell.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/5.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MessageTableCell : UITableViewCell
  10. /** 设备标题 */
  11. @property(nonatomic,strong)UILabel *nameLabel;
  12. /** 图片 */
  13. @property(nonatomic,strong)UIImageView *image;
  14. /** 地址 */
  15. @property(nonatomic,strong)UILabel *locationLabel;
  16. /** 状态 */
  17. @property(nonatomic,strong)UILabel *stateLabel;
  18. /** 编号 */
  19. @property(nonatomic,strong)UILabel *numberLabel;
  20. /** 位置 */
  21. @property(nonatomic,strong)UILabel *placeLabel;
  22. /** 时间 */
  23. @property(nonatomic,strong)UILabel *timelabel;
  24. /** 详细地址 */
  25. @property(nonatomic,strong)UILabel *detailLocationLabel;
  26. /**check */
  27. @property(nonatomic,strong)UIButton *checkButton;
  28. @end