12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // FKCouponItem.h
- // FirstLink
- //
- // Created by ascii on 16/4/9.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- /**
- * 新版优惠券
- */
- typedef NS_ENUM(NSInteger,FKCouponType) {
- FKCouponTypeNone = 0,
- FKCouponTypeMoney = 1,
- FKCouponTypePostage = 2,
- FKCouponTypeAcitivityCard = 3
- };
- @interface FKCouponItem : NSObject
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *useMark;
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *code;
- @property (nonatomic, strong) NSString *amount;
- @property (nonatomic, strong) NSString *minUseAmount;
- @property (nonatomic, strong) NSString *remainCount;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *typeDesc;
- @property (nonatomic, strong) NSString *desc;
- @property (nonatomic, strong) NSString *timeDesc;
- @property (nonatomic, strong) NSString *saleActivityName;
- @property (nonatomic, strong) NSString *targetUser;
- @property (nonatomic, strong) NSString *targetGoods;
- @property (nonatomic, strong) NSString *discountRule;
- @property (nonatomic, strong) NSString *startDate;
- @property (nonatomic, strong) NSString *expiryDate;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *targetUrl;
- - (BOOL)isCouponValid;
- -(FKCouponType)getCouponType;
- @end
|