1234567891011121314151617181920 |
- //
- // CountDataVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/3/5.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CountDataVC : BaseViewController
- @property (nonatomic, assign) NSInteger index;
- @property (nonatomic, copy) NSString *titleStr;
- +(CountDataVC *)initCountDataVC;
- @end
- NS_ASSUME_NONNULL_END
|