12345678910111213141516171819202122232425262728293031 |
- //
- // FKPointSignItem.m
- // FirstLink
- //
- // Created by ascii on 16/4/11.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKPointSignItem.h"
- @implementation FKPointSignItem
- + (NSDictionary *)mts_mapping{
- return @{
- @"next_day_score": mts_key(nextDayScore),
- @"score": mts_key(score),
- @"sign_description": mts_key(signDesc),
- @"amount_description": mts_key(amountDesc),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys{
- return NO;
- }
- - (BOOL)isReceiveCouponCard {
- return (self.signDesc.length > 0 && self.amountDesc.length > 0);
- }
- @end
|