feat:完善个人主页 cp 模块

This commit is contained in:
eggmanQQQ
2024-09-19 16:52:32 +08:00
parent 994df0af28
commit 61e316044d
73 changed files with 1506 additions and 71 deletions

View File

@@ -0,0 +1,16 @@
//
// RelationUserVO.m
// YuMi
//
// Created by P on 2024/9/19.
//
#import "RelationUserVO.h"
@implementation RelationUserVO
- (BOOL)isEmptyRelation {
return self.cpAvatar.length == 0 || self.cpUid == 0 || self.cpNick.length == 0;
}
@end