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