JXRecordCell.h 360 B

1234567891011121314151617181920212223
  1. //
  2. // JXRecordCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/4/20.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXRecordModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface JXRecordCell : UITableViewCell
  12. @property (nonatomic, strong) UIView *lineView;
  13. - (void)setData:(JXRecordModel *)model;
  14. @end
  15. NS_ASSUME_NONNULL_END