|
//
// listContObjectVO.m
// ThePaperDemo
//
// Created by Scar on 14-9-16.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "listContObjectVO.h"
@implementation listContObjectVO
@synthesize contId,pubTime,pic,hotQaInfo,hotTopic,interactionNum,nodeInfo,childList,link,cornerLabel,cornerLabelDesc;
@synthesize watermark,cardMode,forwordNodeId,forwordType,imageNum;
@synthesize name;
@synthesize title;
@synthesize parentNodeId;
@synthesize duration;
@synthesize isChildList,adUrl;
@synthesize isLoadAdSuccess;
- (void)dealloc {
self.contId = nil;
self.pubTime = nil;
self.pic = nil;
self.hotQaInfo = nil;
self.hotTopic = nil;
self.interactionNum = nil;
self.nodeInfo = nil;
self.childList = nil;
self.link = nil;
self.cornerLabel = nil;
self.cornerLabelDesc = nil;
self.watermark = nil;
self.cardMode = nil;
self.forwordNodeId = nil;
self.forwordType = nil;
self.imageNum = nil;
self.name = nil;
self.title = nil;
self.parentNodeId = nil;
self.duration = nil;
self.isChildList = nil;
self.adUrl = nil;
self.isLoadAdSuccess = nil;
}
@end
|