1234567891011121314151617181920212223242526272829303132333435 |
- //
- // CashCoupon.h
- // FirstLink
- //
- // Created by ascii on 15/6/19.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class FKSubmitUnitItem;
- /**
- * 老版代金券
- */
- @interface CashCouponItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *fromUserID;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *code;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *desc;
- @property (nonatomic, strong) NSString *timeDesc;
- @property (nonatomic, strong) NSString *amount;
- @property (nonatomic, strong) NSString *minUseAmount; // 满减使用最小订单金额
- @property (nonatomic, strong) NSString *minUseAmountType;
- @property (nonatomic, strong) NSString *startDate;
- @property (nonatomic, strong) NSString *expiryDate;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *supplierId; // 供应方限制
- - (BOOL)isValidForUnitItem:(FKSubmitUnitItem *)unitItem;
- @end
|