123456789101112131415161718192021 |
- //
- // ZBIncomeViewController.h
- // ZBProject
- //
- // Created by 学丽 on 2019/3/28.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import "ZBBaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBIncomeViewController : ZBBaseViewController
- @property(nonatomic,copy)NSString *yearMonthDay;
- @property(nonatomic,assign)NSInteger isDay;//是否按天 1:按天 0:按月
- @property(nonatomic,copy)NSString *type;
- @property(nonatomic,copy)NSString *isShow;
- @end
- NS_ASSUME_NONNULL_END
|