// // WorkFLowCell.h // smartRhino // // Created by tederen on 2019/11/1. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class WorkFLowModel; @interface WorkFLowCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet UIImageView *iconImageView; @property (weak, nonatomic) IBOutlet UILabel *titleLabel; @property (weak, nonatomic) IBOutlet UILabel *workNumberLab; @property (weak, nonatomic) IBOutlet UIView *topLine; @property (weak, nonatomic) IBOutlet UIView *bottomLine; @property (weak, nonatomic) IBOutlet UIView *leftLine; @property (weak, nonatomic) IBOutlet UIView *rightLine; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *width; @end NS_ASSUME_NONNULL_END