17 lines
247 B
Objective-C
17 lines
247 B
Objective-C
//
|
|
// AttachmentModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/16.
|
|
//
|
|
|
|
#import "AttachmentModel.h"
|
|
#import "NSObject+MJExtension.h"
|
|
@implementation AttachmentModel
|
|
|
|
- (NSString *)encodeAttachment {
|
|
return [self toJSONString];
|
|
}
|
|
|
|
@end
|