调整user实体🚰

This commit is contained in:
2025-05-07 13:38:01 +08:00
parent 166201371c
commit b75c4fb551

View File

@@ -1,6 +1,6 @@
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { User } from './user.entity';
import { User } from './entities/user.entity';
import { Repository } from 'typeorm';
type UserFindOptions = Partial<Pick<User, 'userId' | 'username' | 'phone' | 'email'>>;