用户组织权限管理系统
技术栈:
- 前端:Vue + ElementUi + TypeScript
- 后端:nest.js + mysql + redis
演示地址
功能设计

数据库设计
用户实体
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;
@Column({ length: 500 })
name: string;
@Column({nullable: true, type: 'text'})
desc: string;
@Column({
nullable: true,
length: 100,
select: false,
})
password: string;
@Column( {select: false} )
email: string;
@Column({nullable: true})
age: string;
@Column({nullable: true})
address: string;
@Colum

本系统采用Vue+ElementUI+TypeScript构建前端,nest.js+mysql+redis搭建后端,实现用户、角色及资源的全面管理。支持多条件查询、实体间任意联查,通过JWT进行用户认证。
最低0.47元/天 解锁文章
853

被折叠的 条评论
为什么被折叠?



