Files
keyboard/keyBoard/Class/Me/M/KBConsumptionRecord.m
2025-12-22 19:19:28 +08:00

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