|
//
// objInfoBO.m
// ThePaperDemo
//
// Created by scar1900 on 14/11/18.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "objInfoBO.h"
@implementation objInfoBO
@synthesize contId,name,forwordNodeId,forwordType,userId;
- (void)dealloc {
self.contId = nil;
self.name = nil;
self.forwordType = nil;
self.forwordNodeId = nil;
self.userId = nil;
}
@end
|