12345678910111213141516171819 |
- //
- // JLMyBonusViewCell.h
- // shiku_im
- //
- // Created by JayLuo on 2020/4/11.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JLMyBonusViewCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *numberLabel;
- @end
- NS_ASSUME_NONNULL_END
|