好友:初步申请到查看链

This commit is contained in:
luying
2021-02-02 14:16:56 +08:00
parent a9e2b79c79
commit 5df5f6ed93
15 changed files with 582 additions and 16 deletions

View File

@@ -29,6 +29,9 @@ import { SchoolModel } from '@db/School';
import { CeAttrNumber } from '@db/generalField';
import { smsModel } from '@db/Sms';
import { isString } from 'underscore';
import { FriendShipModel } from '@db/FriendShip';
import { FriendApplyModel } from '@db/FriendApply';
import { FriendRelationModel } from '@db/FriendRelation';
/**
* Test Service
@@ -161,6 +164,9 @@ export default class GMUsers extends Service {
await PvpDefenseModel.deleteAccount(roleId);
await ItemModel.deleteAccount(roleId);
await SchoolModel.deleteAccount(roleId);
await FriendShipModel.deleteAccount(roleId);
await FriendApplyModel.deleteAccount(roleId);
await FriendRelationModel.deleteAccount(roleId);
return ctx.service.utils.resResult(STATUS.SUCCESS);
}