| 1234567891011121314151617181920 |
- //
- // ListModel.m
- // BuguLive
- //
- // Created by fanwe2014 on 16/10/25.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import "ListModel.h"
- @implementation ListModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName{
- return @{
- @"ID" : @"id",
- };
- }
- @end
|