20 lines
323 B
Objective-C
20 lines
323 B
Objective-C
//
|
|
// ClientDataModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/7.
|
|
//
|
|
|
|
#import "ClientDataModel.h"
|
|
#import "XPAdImageTool.h"
|
|
@implementation ClientDataModel
|
|
|
|
- (void)setSplashVo:(AdvertiseModel *)splashVo {
|
|
_splashVo = splashVo;
|
|
if (_splashVo) {
|
|
[XPAdImageTool.shareImageTool saveAdInfo:splashVo];
|
|
}
|
|
}
|
|
|
|
@end
|