File

src/app/auth/auth.user.entity.ts

Description

用户实体

Index

Properties

Properties

Public Optional avatar
Type : string
Public Optional email
Type : string
Public Optional name
Type : string
Public password
Type : string
Public Optional time
Type : number
Public Optional token
Type : string
Public Optional type
Type : string
Public userName
Type : string
export class User {
  // 用户类型
  public type?: string;
  // HT用户名
  public userName: string;
  // 用户密码
  public password: string;
  // 中文名
  public name?: string;
  // 唯一标识
  public token?: string;
  // email
  public email?: string;
  // 登录时间戳
  public time?: number;
  // 图像图片地址
  public avatar?: string;
}

result-matching ""

    No results matching ""