This commit is contained in:
启星
2025-10-30 18:30:45 +08:00
parent aa356202e2
commit c92b8eb910
11 changed files with 297 additions and 87 deletions

View File

@@ -18,6 +18,18 @@
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
return @{@"tag_list" : @"QXUserTag"};
}
-(instancetype)copyModel{
QXUserHomeModel *copy = [[QXUserHomeModel alloc] init];
copy.user_id = self.user_id;
copy.user_code = self.user_code;
copy.avatar = self.avatar;
copy.sex = self.sex;
copy.dress = self.dress;
copy.nickname = self.nickname;
return copy;
}
@end