20 lines
295 B
Objective-C
20 lines
295 B
Objective-C
//
|
|
// HealthInterveneAEDModel.m
|
|
// EscortProject
|
|
//
|
|
// Created by 仁康信息 on 2023/12/19.
|
|
//
|
|
|
|
#import "HealthInterveneAEDModel.h"
|
|
|
|
@implementation HealthInterveneAEDModel
|
|
|
|
|
|
+ (NSDictionary *)modelCustomPropertyMapper
|
|
{
|
|
NSDictionary * dic =@{@"aed_id" :@"id"};
|
|
return dic;
|
|
}
|
|
|
|
@end
|