| 1234567891011121314151617181920212223 |
- //
- // IncomeListModel.m
- // model
- //
- // Created by 杨键 on 2018/8/4.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import "IncomeListModel.h"
- @implementation IncomeListModel
- - (void)setValue:(id)value forUndefinedKey:(NSString *)key
- {
-
- }
- +(BOOL)propertyIsOptional:(NSString *)propertyName
- {
- return YES;
- }
- @end
|