12345678910111213141516171819202122232425262728 |
- //
- // YOUPAIHROperationRecordModel.m
- // VQU
- //
- // Created by xiaohaoran on 2021/11/12.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAIHROperationRecordModel.h"
- @implementation YOUPAIHROperationRecordModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipmanager_id":@"manager_id",
- @"youpaipnickname":@"nickname",
- @"youpaipcreate_time":@"create_time",
- @"youpaipdes":@"des",
- @"youpaipoperate":@"operate",
- @"youpaipop_user_id":@"op_user_id",
- @"youpaipcate_name":@"cate_name",
- @"youpaipop_user_name":@"op_user_name",
- @"youpaipmanager_identity":@"manager_identity",
- @"youpaipSF_time":@"SF_time",
- };
- }
- @end
|