123456789101112131415161718192021222324252627 |
- //
- // YOUPAILZVideoDiscountModel.m
- // VQU
- //
- // Created by CY on 2021/7/19.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "YOUPAILZVideoDiscountModel.h"
- @implementation YOUPAILZVideoDiscountModel
- + (NSDictionary*)mj_objectClassInArray{
- return @{
- @"youpaiptime" : [YOUPAILZVideoDiscountItemModel class]
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipprice":@"price",
- @"youpaiptime":@"time",
- };
- }
- @end
|