协议增加,收藏角色,收藏列表
This commit is contained in:
@@ -323,4 +323,26 @@ export class MockGirlService implements IGirlService {
|
||||
};
|
||||
return this.ok(res);
|
||||
}
|
||||
|
||||
// 收藏技师
|
||||
async reqBookmarkGirl(req: proto.cs.ICSBookmarkReq): Promise<ApiResponse<proto.cs.ICSBookmarkRes>> {
|
||||
// TODO
|
||||
|
||||
// 返回数据
|
||||
const res: proto.cs.ICSBookmarkRes = {
|
||||
|
||||
};
|
||||
return this.ok(res);
|
||||
}
|
||||
|
||||
// 获取收藏列表
|
||||
async reqBookmarkGirlList(req: proto.cs.ICSGetBookmarkReq): Promise<ApiResponse<proto.cs.ICSGetBookmarkRes>> {
|
||||
// TODO
|
||||
|
||||
// 返回数据
|
||||
const res: proto.cs.ICSGetBookmarkRes = {
|
||||
girls: [],
|
||||
};
|
||||
return this.ok(res);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user