1234567891011121314151617181920 |
- //
- // FKPriceWarnItem.m
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKPriceWarnItem.h"
- @implementation FKPriceWarnItem
- - (BOOL)didOpenMessageWarn{
- if (self.notifyType == kNotifyTypeBoth || self.notifyType == kNotifyTypeMessage) {
- return YES;
- }
- return NO;
- }
- @end
|