24 lines
572 B
C
24 lines
572 B
C
![]() |
//
|
||
|
// PINobleRebateModel.h
|
||
|
// YuMi
|
||
|
//
|
||
|
// Created by duoban on 2024/3/29.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface PINobleRebateModel : NSObject
|
||
|
@property(nonatomic,copy) NSString *id;
|
||
|
@property(nonatomic,assign) BOOL isReceive;
|
||
|
@property(nonatomic,copy) NSString *profitAmount;
|
||
|
@property(nonatomic,copy) NSString *profitDate;
|
||
|
@property(nonatomic,assign) int seqNo;
|
||
|
@property(nonatomic,assign) int vipLevel;
|
||
|
@property(nonatomic,assign) BOOL isReach;
|
||
|
@property(nonatomic,copy) NSString *returnProfitRecordId;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|