// // LDAccountInfoModel.h // YouHuiProject // // Created by 小花 on 2018/8/7. // Copyright © 2018年 kuxuan. All rights reserved. // #import @interface LDAccountInfoModel : NSObject @property(nonatomic,strong)NSString *account_balance;//账户余额 @property (nonatomic, strong) NSString *this_day_forecast_income;//今日预估收入 @property (nonatomic, strong) NSString *this_day_order_count;//今日订单量 @property (nonatomic, strong) NSString *last_day_forecast_income;//昨日预估收入 @property (nonatomic, strong) NSString *last_day_order_count;//昨日订单量 @property (nonatomic, strong) NSString *this_month_forecast_income;//本月预估收入 @property (nonatomic, strong) NSString *this_month_order_count;//本月订单量 @property (nonatomic, strong) NSString *last_month_forecast_income;//上月预估收入 @property (nonatomic, strong) NSString *last_month_order_count;//上月订单量 @property (nonatomic, strong) NSString *this_month_settlement_income;//本月结算收入 @property (nonatomic, strong) NSString *this_month_settlement_order_count;//本月结算订单量 @property (nonatomic, strong) NSString *last_month_settlement_income;//上月结算收入 @property (nonatomic, strong) NSString *last_month_settlement_order_count;//上月结算订单量 @property (nonatomic, strong) NSString *all_settlement_income;//累计结算金额 @property (nonatomic, strong) NSString *all_settlement_order_count;//累计结算订单量 @property (nonatomic, strong) NSString *forecast_income_text;//预估收入文案 @property (nonatomic, strong) NSString *settlement_income_text;//结算收入文案 - (NSArray *)getTodayInfoArr; - (NSArray *)getMonthEstimateInfoArr; - (NSArray *)getMonthFinalInfoArr; @end