|
//
// commodityBO.m
// ThePaperBase
//
// Created by Huixin on 15/10/27.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "commodityBO.h"
@implementation commodityBO
@synthesize cid, name, seashell, description, pic, realOrVirtual, saleMode, stock, isOnly, status, buttonValue, pubTime;
- (void)dealloc {
self.cid = nil;
self.name = nil;
self.description = nil;
self.seashell = nil;
self.pic = nil;
self.realOrVirtual = nil;
self.saleMode = nil;
self.stock = nil;
self.isOnly = nil;
self.status = nil;
self.buttonValue = nil;
self.pubTime = nil;
}
@end
|