SignInfoCell.h 767 B

1234567891011121314151617181920212223
  1. //
  2. // SignInfoCell.h
  3. // 千模
  4. //
  5. // Created by MUMEI on 2018/5/31.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActivityModel.h"
  10. @interface SignInfoCell : UITableViewCell
  11. @property (strong, nonatomic) ActivityModel *model;
  12. @property (weak, nonatomic) IBOutlet UILabel *captionLabel;
  13. @property (weak, nonatomic) IBOutlet UITextField *name;
  14. @property (weak, nonatomic) IBOutlet UITextField *phone;
  15. @property (weak, nonatomic) IBOutlet UILabel *num;
  16. @property (weak, nonatomic) IBOutlet UILabel *price;
  17. @property (weak, nonatomic) IBOutlet UILabel *totoalPrice;
  18. @property (weak, nonatomic) IBOutlet UIButton *jianBtn;
  19. @property (weak, nonatomic) IBOutlet UIButton *jiaBtn;
  20. @property (nonatomic, assign) int intNum;
  21. @end