17 lines
312 B
Objective-C
17 lines
312 B
Objective-C
//
|
|
// KBConsumptionRecord.m
|
|
// keyBoard
|
|
//
|
|
|
|
#import "KBConsumptionRecord.h"
|
|
|
|
@implementation KBConsumptionRecord
|
|
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
|
// JSON: { "id": 0, "tagName": "xxx" }
|
|
// Model: tagId / tagName
|
|
return @{
|
|
@"kbdescription" : @"description",
|
|
};
|
|
}
|
|
@end
|