PBUserHomePageAppointCell.h 419 B

12345678910111213141516171819202122232425
  1. //
  2. // PBUserHomePageAppointCell.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/1/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PBUserHomePageAppointCell : UICollectionViewCell
  10. ///头像
  11. @property (nonatomic,strong)UIImageView *picImageView;
  12. ///姓名
  13. @property (nonatomic,strong)UILabel *titleLabel;
  14. ///状态文本
  15. @property (nonatomic,strong)UILabel *statusLabel;
  16. @end
  17. NS_ASSUME_NONNULL_END