// // DRIncomeViewController.h // YouHuiProject // // Created by 小花 on 2018/8/3. // Copyright © 2018年 kuxuan. All rights reserved. // #import "DRBaseViewController.h" typedef enum : NSUInteger { near_day_forecast_income, //近期收入 this_day_forecast_income, //今日预估收入 last_day_forecast_income, //昨日预估收入 last_month_forecast_income, //月预估收入 last_month_settlement_income //月结算收入 } UserInfoIncomeType; @interface DRIncomeViewController : DRBaseViewController @property (nonatomic, assign) UserInfoIncomeType infoIncomeType; @property (nonatomic, strong) NSDate *startDate; @property(nonatomic,copy)NSString *yearMonth; @end