YOUPAILZBillSectionModel.h 628 B

1234567891011121314151617181920212223
  1. //
  2. // YOUPAILZBillSectionModel.h
  3. // MEISHI
  4. //
  5. // Created by CY on 2021/2/22.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "YOUPAILCBillDetailModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZBillSectionModel : NSObject
  12. @property (nonatomic, strong) NSString *youpaipdate;//月份
  13. @property (nonatomic, strong) NSMutableArray <YOUPAILCBillDetailModel *>*youpaiplist;//数据列表
  14. @property (nonatomic, strong) NSString *youpaipincome;//当前月分收入总值
  15. @property (nonatomic, strong) NSString *youpaipexpend;//当前月分支出总值
  16. @end
  17. NS_ASSUME_NONNULL_END