| 123456789101112131415161718192021222324252627 |
- //
- // PushManageCell.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/10.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PlaceModel.h"
- @interface PushManageCell : UITableViewCell
- /** 地址 */
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *receiveLabel;
- @property(nonatomic,strong)UITextField *textField;
- @property(nonatomic,strong)UIButton *selectTelBtn;
- @property(nonatomic,strong)UIButton *selectMsgBtn;
- @property(nonatomic,strong)UIButton *comitBtn;
- @property (nonatomic,strong)PlaceModel *model;
- @end
|