No Description

CashCouponItem.h 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // CashCoupon.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/6/19.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class FKSubmitUnitItem;
  10. /**
  11. * 老版代金券
  12. */
  13. @interface CashCouponItem : NSObject
  14. @property (nonatomic, strong) NSString *itemID;
  15. @property (nonatomic, strong) NSString *fromUserID;
  16. @property (nonatomic, strong) NSString *status;
  17. @property (nonatomic, strong) NSString *code;
  18. @property (nonatomic, strong) NSString *type;
  19. @property (nonatomic, strong) NSString *desc;
  20. @property (nonatomic, strong) NSString *timeDesc;
  21. @property (nonatomic, strong) NSString *amount;
  22. @property (nonatomic, strong) NSString *minUseAmount; // 满减使用最小订单金额
  23. @property (nonatomic, strong) NSString *minUseAmountType;
  24. @property (nonatomic, strong) NSString *startDate;
  25. @property (nonatomic, strong) NSString *expiryDate;
  26. @property (nonatomic, strong) NSString *createTime;
  27. @property (nonatomic, strong) NSString *supplierId; // 供应方限制
  28. - (BOOL)isValidForUnitItem:(FKSubmitUnitItem *)unitItem;
  29. @end