NoticeData.h 1.42 KB
//
//  NoticeData.h
//  SCIOLive
//
//  Created by wei on 14-9-29.
//  Copyright (c) 2014年 Miao Long. All rights reserved.
//

#import <Foundation/Foundation.h>
@interface NoticeData : NSObject<NSCopying>
@property(nonatomic, strong) NSString *time;
@property(nonatomic, strong) NSString *title;
@property(nonatomic, strong) NSString *content;
- (id)initWithJSONDictionary: (NSDictionary*)jsonDic;
@end


@interface TableData : NSObject
@property(nonatomic, strong) NSString *cmsColumnName;
@property(nonatomic, strong) NSString *cmsColumnId;
@property(nonatomic, assign) int cmsContentId;
@property(nonatomic, strong) NSString *createDate;
@property(nonatomic, strong) NSString *desc;
@property(nonatomic, assign) int gxbArticleId;
@property(nonatomic, assign) int gxbVideoId;
@property(nonatomic, strong) NSString *img;
@property(nonatomic, strong) NSString *pageUrl;
@property(nonatomic, strong) NSString *picType;
@property(nonatomic, strong) NSString *publishDate;
@property(nonatomic, strong) NSString *subTitle;
@property(nonatomic, strong) NSString *title;
@property(nonatomic, strong) NSString *type;
@property(nonatomic, strong) NSString *uploadVideoUrl;
@property(nonatomic, strong) NSString *videoUrl;
@property(nonatomic, assign) int vipFlag;
@property(nonatomic, strong) NSString *author;
@property(nonatomic, strong) NSDictionary *dictionary;
- (id)initWithJSONDictionary: (NSDictionary*)jsonDic;
- (NSDictionary *)ToDictionary;
@end