# 内容管理系统 **Repository Path**: wang-jiawen-rjjs/content-management-system ## Basic Information - **Project Name**: 内容管理系统 - **Description**: 就是一个草稿箱 可以把项目先提交到这里,经过对接测试后再推到闽大那个库去 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2022-07-12 - **Last Updated**: 2022-07-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 就是一个草稿箱 可以把项目先提交在这里,通过对接测试后再提交到主仓库里面 ## 数据库表 ``` 用户表(User) Id Guid 昵称 UserName string 密码 PassWord long 邮箱 Email string 是否是管理员 IsAdministor bool dafult(false) 博文表(Blog) id id 标题 BlogTitle string 内容 BlogContent text 类型 CateId int 发布日期 BlogTime dateTime 作者 AuthorId Guid 关注用户表(Attention_Author) id id 用户id UserId Guid 作者id AuthorId Guid 收藏列表(Blog_Collect) id id 收藏用户 UserId int 文章编号 BlogId int 注册表(Register) id id 邮箱 Email string 验证码 Auth_code string 类型表(Categroy) id id 类型名称 CateName string 用户头像表(Avatar) id id 用户编号 UserId Guid 公共属性(BaseEntity) id id guid 创建时间 CreateAt DateTime (最后)更新时间 UpdateAt DateTime 创建人的Id CreateBy Guid (最后)更新人的Id UpdateBy Guid 是否启用(默认是) IsActive bool 是否删除 (默认false) IsDelete bool 展示顺序 DisplayOrder int 备注 Remark string ```