猎豆优选

LDAccountInfoModel.h 1.7KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // LDAccountInfoModel.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/8/7.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface LDAccountInfoModel : NSObject
  10. @property(nonatomic,strong)NSString *account_balance;//账户余额
  11. @property (nonatomic, strong) NSString *this_day_forecast_income;//今日预估收入
  12. @property (nonatomic, strong) NSString *this_day_order_count;//今日订单量
  13. @property (nonatomic, strong) NSString *last_day_forecast_income;//昨日预估收入
  14. @property (nonatomic, strong) NSString *last_day_order_count;//昨日订单量
  15. @property (nonatomic, strong) NSString *this_month_forecast_income;//本月预估收入
  16. @property (nonatomic, strong) NSString *this_month_order_count;//本月订单量
  17. @property (nonatomic, strong) NSString *last_month_forecast_income;//上月预估收入
  18. @property (nonatomic, strong) NSString *last_month_order_count;//上月订单量
  19. @property (nonatomic, strong) NSString *this_month_settlement_income;//本月结算收入
  20. @property (nonatomic, strong) NSString *this_month_settlement_order_count;//本月结算订单量
  21. @property (nonatomic, strong) NSString *last_month_settlement_income;//上月结算收入
  22. @property (nonatomic, strong) NSString *last_month_settlement_order_count;//上月结算订单量
  23. @property (nonatomic, strong) NSString *all_settlement_income;//累计结算金额
  24. @property (nonatomic, strong) NSString *all_settlement_order_count;//累计结算订单量
  25. @property (nonatomic, strong) NSString *forecast_income_text;//预估收入文案
  26. @property (nonatomic, strong) NSString *settlement_income_text;//结算收入文案
  27. - (NSArray *)getTodayInfoArr;
  28. - (NSArray *)getMonthEstimateInfoArr;
  29. - (NSArray *)getMonthFinalInfoArr;
  30. @end