feat: curd

This commit is contained in:
luchang
2024-05-22 19:13:08 +08:00
parent 410bfc1e38
commit 74c77011ea
27 changed files with 316 additions and 166 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
@Entity()
export class SysUserEntity {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
@Column()
password: string;
}