// // selectOrderTableViewCell.h // iSales-NPD // // Created by Ray on 9/3/16. // Copyright © 2016 United Software Applications, Inc. All rights reserved. // #import typedef void (^checkButtonBlock)(void); @interface SelectOrderTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *labelsoid; @property (strong, nonatomic) IBOutlet UILabel *labelcompany; @property (strong, nonatomic) IBOutlet UIButton *checkedButton; @property (strong, nonatomic) IBOutlet UILabel *labelCreateTime; @property (nonatomic,copy) checkButtonBlock checkBlock; @end