class UserEntity { constructor(){ this.userId = '' this.userName = '' this.password = '' this.avatarUrl = '' this.description = '' this.createdAt = '' } } module.exports = UserEntity