1234567891011121314151617181920212223242526 |
- //
- // YOUPAILCFirstRechargeModel.m
- // VQU
- //
- // Created by 肖浩然的mac on 2021/9/10.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILCFirstRechargeModel.h"
- @implementation YOUPAILCFirstRechargeModel
- +(NSDictionary *)mj_objectClassInArray{
-
- return @{
- @"youpaiplist":[YOUPAILCBannerModel class]
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipis_open":@"is_open",
- @"youpaiplist":@"list",
- };
- }
- @end
|