Нет описания

FKPriceWarnItem.m 360B

1234567891011121314151617181920
  1. //
  2. // FKPriceWarnItem.m
  3. // FirstLink
  4. //
  5. // Created by jack on 16/5/27.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKPriceWarnItem.h"
  9. @implementation FKPriceWarnItem
  10. - (BOOL)didOpenMessageWarn{
  11. if (self.notifyType == kNotifyTypeBoth || self.notifyType == kNotifyTypeMessage) {
  12. return YES;
  13. }
  14. return NO;
  15. }
  16. @end