123456789101112131415161718192021222324252627 |
- //
- // YOUPAILZVipPrivilegeModel.m
- // VQU
- //
- // Created by CY on 2021/8/21.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZVipPrivilegeModel.h"
- @implementation YOUPAILZVipPrivilegeModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipimg":@"img",
- @"youpaipname":@"name",
- @"youpaipdes":@"des",
- @"youpaipis_has":@"is_has",
- @"youpaipis_show":@"is_show",
- @"youpaipshow_img":@"show_img",
- @"youpaipwidth":@"width",
- @"youpaipheight":@"height",
- };
- }
- @end
|