GoodsModel.m 333 B

123456789101112131415161718192021
  1. //
  2. // GoodsModel.m
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/9/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "GoodsModel.h"
  9. @implementation GoodsModel
  10. - (void)setValue:(id)value forUndefinedKey:(NSString *)key
  11. {
  12. if([key isEqualToString:@"description"])
  13. {
  14. self.descStr = value;
  15. }
  16. }
  17. @end