|
//
// userBO.m
// ThePaperDemo
//
// Created by scar1900 on 14-9-29.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "userBO.h"
@implementation userBO
@synthesize area,birthday,blood,constellation,endTime,isFree,isSetPwd,mail,mobile,name,password,perDesc,pic,profession;
@synthesize sex,sname,token,userId,weiboIdMap,loginType,isAuth;
- (void)dealloc {
self.area = nil;
self.birthday = nil;
self.blood = nil;
self.constellation = nil;
self.endTime = nil;
self.mail = nil;
self.mobile = nil;
self.name = nil;
self.password = nil;
self.perDesc = nil;
self.pic = nil;
self.profession = nil;
self.sex = nil;
self.sname = nil;
self.token = nil;
self.userId = nil;
self.weiboIdMap = nil;
self.loginType = nil;
self.isAuth = nil;
}
@end
|