// // OrderAuditListViewController.h // IBOSS // // Created by 关宏厚 on 2018/11/12. // Copyright © 2018 elongtian. All rights reserved. // #import "BaseViewController.h" #import "OrderAuditListModel.h" #import "OrderAuditListCell.h" #import "OrderAuditSearchModel.h" @interface OrderAuditListViewController : BaseViewController @property(nonatomic,strong) UIView *bottomView; @property(nonatomic,strong) UIButton *auditBtn; @property(nonatomic,strong) UILabel *lblTotalCount; @property(nonatomic,strong) UIButton *giveUpAuditBtn; @property(nonatomic,strong) UIButton *btnCheckAll; @property(nonatomic,strong) NSString *orderNo; @property(nonatomic,strong) NSString *customerCode; @property(nonatomic,strong) NSString *customerName; @property(nonatomic,strong) NSString *telephone; @property(nonatomic,strong) NSString *address; @property(nonatomic,strong) NSString *beginDate; @property(nonatomic,strong) NSString *endDate; @property(nonatomic,strong) NSString *status; @property(nonatomic,assign) Boolean isCheckAll; @property(nonatomic,strong) NSString *checkFlag; @property(nonatomic,strong) NSMutableArray *auditList; @property (nonatomic,strong) RefreshTableView *vCustomTableView; @property(nonatomic,strong) OrderAuditListModel *auditModel; /** ASIDownManager */ @property (nonatomic,strong) ASIDownManager *downManager; @property (strong,nonatomic) SideSlipFilterController *filterController; @end