123456789101112131415161718192021222324252627 |
- //
- // YOUPAILZDressModel.m
- // VQU
- //
- // Created by CY on 2021/8/17.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "YOUPAILZDressModel.h"
- @implementation YOUPAILZDressModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipid":@"id",
- @"youpaipname":@"name",
- @"youpaipfile":@"file",
- @"youpaippreview_img":@"preview_img",
- @"youpaipdetail":@"detail",
- @"youpaipexpire":@"expire",
- @"youpaipis_use":@"is_use",
- @"youpaipu_dress_id":@"u_dress_id",
- };
- }
- @end
|