21 lines
413 B
Objective-C
21 lines
413 B
Objective-C
//
|
|
// LMGonghuiButieViewController.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/9.
|
|
//
|
|
|
|
#import "BaseController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMGonghuiButieViewController : BaseController
|
|
|
|
@property (nonatomic, strong) NSString *last_week_income;
|
|
@property (nonatomic, strong) NSString *this_week_income;
|
|
@property (nonatomic, strong) NSString *last_week_income_money;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|