1234567891011121314151617 |
- //
- // YMWithdrawalAccountModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/6.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMWithdrawalAccountModel.h"
- @implementation YMWithdrawalAccountModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{
- @"withdrawal_account_id":@"id",
- };
- }
- @end
|