WorkFLowCell.h 749 B

12345678910111213141516171819202122232425
  1. //
  2. // WorkFLowCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/1.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class WorkFLowModel;
  11. @interface WorkFLowCell : UICollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *workNumberLab;
  15. @property (weak, nonatomic) IBOutlet UIView *topLine;
  16. @property (weak, nonatomic) IBOutlet UIView *bottomLine;
  17. @property (weak, nonatomic) IBOutlet UIView *leftLine;
  18. @property (weak, nonatomic) IBOutlet UIView *rightLine;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *width;
  20. @end
  21. NS_ASSUME_NONNULL_END