ArticleModel.m 468 字节
//
//  ArticleModel.m
//  DreamSleep
//
//  Created by peter on 2022/10/19.
//

#import "ArticleModel.h"

@implementation ArticleModel

+ (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper {
    return @{@"articleID" : @"article_id",
             @"tags" : @"article_tags",
             @"title" : @"article_title",
             @"content" : @"article_content",
             @"url" : @"article_url",
             @"cover" : @"cover_img"
    };
}

@end