forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShop.h
More file actions
40 lines (29 loc) · 991 Bytes
/
Shop.h
File metadata and controls
40 lines (29 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// Shop.h
// Coding_iOS
//
// Created by liaoyp on 15/11/20.
// Copyright © 2015年 Coding. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BaseModel.h"
#import "ShopGoods.h"
typedef NS_ENUM(NSInteger, ShopType)
{
ShopTypeAll = 0,
ShopTypeExchangeable,
};
@interface Shop : BaseModel
@property (readwrite, nonatomic, strong) NSNumber *page,*pageSize;
@property (assign, nonatomic) BOOL canLoadMore, willLoadMore, isLoading;
@property (assign, nonatomic) ShopType shopType;
@property (readwrite, nonatomic, strong) User *curUser;
@property (readwrite, nonatomic, strong) NSArray *shopBannerArray;
@property (readwrite, nonatomic, strong) NSMutableArray *shopGoodsArray;
@property (readwrite, strong) NSArray *dateSource;
//该用户可用的code分数
@property (readwrite, nonatomic, strong) NSNumber *points_left,*points_total;
- (NSString *)toGiftsPath;
- (void)configWithGiftGoods:(NSArray *)responseA;
- (NSArray *)getExchangeGiftData;
@end