12345678910111213141516171819202122232425 |
- //
- // YOUPAIHRCoinDetailModel.m
- // VQU
- //
- // Created by xiaohaoran on 2021/10/19.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAIHRCoinDetailModel.h"
- @implementation YOUPAIHRCoinDetailModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipid":@"id",
- @"youpaipbusiness_code":@"business_code",
- @"youpaipchange_value":@"change_value",
- @"youpaipremark":@"remark",
- @"youpaipbc":@"bc",
- @"youpaipcreate_time":@"create_time",
- };
- }
- @end
|