1.1.2
This commit is contained in:
@@ -105,6 +105,8 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/// 是否使用靓号 0未使用 1 已使用
|
||||
@property (nonatomic,strong)NSString *is_use_code;
|
||||
|
||||
-(instancetype)copyModel;
|
||||
@end
|
||||
|
||||
@interface QXUserTag : NSObject
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user