| 1234567891011121314151617181920212223242526272829303132 |
- //
- // CommitMessage_VC.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/7.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "THDatePickerView.h"
- ////定义代理
- //@protocol ChangeValueDelegate <NSObject>
- //-(void)comitWithData:(NSMutableArray *)dataArray;
- //@end
- @interface CommitMessage_VC : UIViewController
- @property(nonatomic,strong)UITableView *tableView;
- @property(nonatomic,strong)UIButton *starttimeBtn;
- @property(nonatomic,strong)UIButton *endtimeBtn;
- //声明代理
- //@property(nonatomic,strong) id<ChangeValueDelegate> delegte;
- @property (weak, nonatomic) THDatePickerView *beginDateView;
- @property (weak, nonatomic) THDatePickerView *endDateView;
- @end
|