mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 19:41:46 +08:00
14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
import { BaseEntity } from 'egg-cool-entity';
|
|
import { Entity, Column } from 'typeorm';
|
|
|
|
@Entity({ name: 'user' })
|
|
export default class User extends BaseEntity {
|
|
// 用户名
|
|
@Column()
|
|
name: string;
|
|
// 昵称
|
|
@Column()
|
|
nickName: string;
|
|
|
|
}
|