| 1234567891011121314151617181920212223 |
- //
- // SignInfoCell.h
- // 千模
- //
- // Created by MUMEI on 2018/5/31.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActivityModel.h"
- @interface SignInfoCell : UITableViewCell
- @property (strong, nonatomic) ActivityModel *model;
- @property (weak, nonatomic) IBOutlet UILabel *captionLabel;
- @property (weak, nonatomic) IBOutlet UITextField *name;
- @property (weak, nonatomic) IBOutlet UITextField *phone;
- @property (weak, nonatomic) IBOutlet UILabel *num;
- @property (weak, nonatomic) IBOutlet UILabel *price;
- @property (weak, nonatomic) IBOutlet UILabel *totoalPrice;
- @property (weak, nonatomic) IBOutlet UIButton *jianBtn;
- @property (weak, nonatomic) IBOutlet UIButton *jiaBtn;
- @property (nonatomic, assign) int intNum;
- @end
|