BankNameModel.h 833 B

123456789101112131415161718192021222324252627
  1. //
  2. // BankNameModel.h
  3. //
  4. // Created by Steven on 2022/4/27
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface BankNameModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *internalBaseClassDescription;
  10. @property (nonatomic, strong) NSString *createOn;
  11. @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
  12. @property (nonatomic, assign) double modifyBy;
  13. @property (nonatomic, strong) NSString *group;
  14. @property (nonatomic, strong) NSString *paramValue;
  15. @property (nonatomic, strong) NSString *paramName;
  16. @property (nonatomic, strong) NSString *modifyOn;
  17. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  18. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  19. - (NSDictionary *)dictionaryRepresentation;
  20. @end