LogShareAndCommentInfoModel.m 789 B

12345678910111213141516171819202122232425262728
  1. //
  2. // LogShareAndCommentInfoModel.m
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/5.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import "LogShareAndCommentInfoModel.h"
  9. @implementation LogShareAndCommentInfoModel
  10. -(void)ParseDic:(NSDictionary *)dic
  11. {
  12. if(dic!=nil){
  13. _userCode=[dic objectForKey:@"UserCode"];
  14. _userName=[dic objectForKey:@"UserName"];
  15. _userId= [[dic objectForKey:@"UserID"] stringValue];//[NSString stringWithFormat:@"%d",];
  16. _orgId=[[dic objectForKey:@"OrganizationID"] stringValue];
  17. _orgName=[dic objectForKey:@"OrganizationName"];
  18. _orgCode=[dic objectForKey:@"OrganizationCode"];
  19. _orgFullName=[dic objectForKey:@"OrganizationFullName"];
  20. _isChecked=NO;
  21. }
  22. }
  23. @end