22 lines
439 B
Objective-C
Executable File
22 lines
439 B
Objective-C
Executable File
//
|
|
// SPGiftMingxiVC.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/27.
|
|
//
|
|
|
|
#import "BaseTableViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPGiftMingxiVC : BaseTableViewController
|
|
|
|
@property (nonatomic, assign) NSInteger type;//1收入记录 2赠送记录
|
|
|
|
@property (nonatomic, copy) NSString *userId;
|
|
@property (nonatomic, assign) NSInteger gift_from_type;//1为金币礼物 2为背包礼物
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|