| 12345678910111213141516171819202122232425262728 |
- //
- // LogShareAndCommentInfoModel.m
- // IBOSS
- //
- // Created by Dongke on 15/11/5.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import "LogShareAndCommentInfoModel.h"
- @implementation LogShareAndCommentInfoModel
- -(void)ParseDic:(NSDictionary *)dic
- {
- if(dic!=nil){
- _userCode=[dic objectForKey:@"UserCode"];
- _userName=[dic objectForKey:@"UserName"];
- _userId= [[dic objectForKey:@"UserID"] stringValue];//[NSString stringWithFormat:@"%d",];
-
- _orgId=[[dic objectForKey:@"OrganizationID"] stringValue];
- _orgName=[dic objectForKey:@"OrganizationName"];
- _orgCode=[dic objectForKey:@"OrganizationCode"];
- _orgFullName=[dic objectForKey:@"OrganizationFullName"];
-
- _isChecked=NO;
- }
-
- }
- @end
|