123456789101112131415161718192021222324252627 |
- //
- // YOUPAIZYLabelModel.m
- // VQU
- //
- // Created by Elaine on 2020/12/16.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import "YOUPAIZYLabelModel.h"
- @implementation YOUPAIZYLabelModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaiptag_id":@"id",
- @"youpaipname":@"name",
- @"youpaipscene":@"scene",
- @"youpaipstatus":@"status",
- @"youpaiptype":@"type",
- @"youpaipisSelect":@"isSelect",
- @"youpaipstart_color":@"start_color",
- @"youpaipover_color":@"over_color",
- @"youpaipnum":@"num",
- };
- }
- @end
|