|
//
// commentObjectVO.m
// ThePaperDemo
//
// Created by Scar on 14-9-16.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "commentObjectVO.h"
@implementation commentObjectVO
@synthesize commentId,type,objectType,contId,contName,parentId,content;
@synthesize userName,answerList,quoteInfo,floor,praiseTimes,parentInfo,parent,isAttented,userInfo;
@synthesize shareUrl;
@synthesize unNums;
@synthesize answerNums;
@synthesize isExpand;
@synthesize forwordType;
@synthesize isPraised;
@synthesize pubTime;
@synthesize isAnswer;
@synthesize objInfo;
@synthesize askOrAnswer;
@synthesize labelHeight;
- (void)dealloc {
self.commentId = nil;
self.type = nil;
self.objectType = nil;
self.contId = nil;
self.contName = nil;
self.parentId = nil;
self.content = nil;
self.userName = nil;
self.answerList = nil;
self.quoteInfo = nil;
self.floor = nil;
self.praiseTimes = nil;
self.parentInfo = nil;
self.parent = nil;
self.isAttented = nil;
self.shareUrl = nil;
self.unNums = nil;
self.answerNums = nil;
self.isExpand = nil;
self.isQuoExpand = nil;
self.forwordType = nil;
self.isPraised = nil;
self.userInfo = nil;
self.pubTime = nil;
self.isAnswer = nil;
self.objInfo = nil;
self.askOrAnswer = nil;
}
@end
|