YOUPAIZYRechargeBtn.h 717 B

1234567891011121314151617181920212223242526
  1. //
  2. // YOUPAIZYRechargeBtn.h
  3. // SIYE
  4. //
  5. // Created by Elaine on 2020/10/29.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCRechargeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAIZYRechargeBtn : UIButton
  12. @property(nonatomic,strong)UILabel* youpaippriceLabel;
  13. @property(nonatomic,strong)UILabel* youpaipgoodLabel;
  14. @property(nonatomic,strong)UILabel* youpaipgiveLabel;// 加送
  15. @property(nonatomic,strong)UIButton* youpaipgoodBtn;
  16. @property(nonatomic,strong)UIImageView* youpaipselectImgV;
  17. @property(nonatomic,strong)YOUPAILCRechargeModel* youpaipreModel;
  18. - (instancetype)initWithFrame:(CGRect)frame model:(YOUPAILCRechargeModel*)model;
  19. @end
  20. NS_ASSUME_NONNULL_END