ShopListModel.m 449 B

12345678910111213141516171819202122232425
  1. //
  2. // ShopListModel.m
  3. // BuguLive
  4. //
  5. // Created by yy on 16/9/21.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "ShopListModel.h"
  9. @implementation ShopListModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName{
  11. return @{
  12. @"ID" : @"id",
  13. @"descrStr": @"description"
  14. };
  15. }
  16. - (NSMutableArray *)imgs{
  17. if (!_imgs) {
  18. self.imgs= [NSMutableArray new];
  19. }
  20. return _imgs;
  21. }
  22. @end