YOUPAIBBProfileHeaderView.h 910 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YOUPAIBBProfileHeaderView.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2021/10/19.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCUserModel.h"
  10. #import "YOUPAILCUserCountModel.h"
  11. #import "YOUPAILZLiveCardModel.h"
  12. #import "YOUPAILCBaseInfo.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface YOUPAIBBProfileHeaderView : UIView
  15. /* YOUPAILCBaseInfo */
  16. @property (strong, nonatomic) YOUPAILCBaseInfo *youpaipinfoModel;
  17. /// 更新用户信息
  18. - (void)youpaifreloadUserInfoWithModel:(YOUPAILCUserModel *)youpaipuserModel;
  19. /// 更新数量信息
  20. - (void)youpaifreloadCountWithModel:(YOUPAILCUserCountModel *)model;
  21. /// 更新用户等级
  22. - (void)youpaifreloadUserLevelModel:(YOUPAILZLiveCardModel *)model;
  23. /// 更新账户资产信息
  24. /// balance 余额
  25. /// profit 收益
  26. - (void)youpaifreloadAccountWithBalance:(NSInteger)balance profit:(NSString *)profit;
  27. @end
  28. NS_ASSUME_NONNULL_END