zoukankan      html  css  js  c++  java
  • 新闻系统需求分析

    需求分析:

    项目需求概述:

    1. 使用 Ajax 技术改进系统首页新闻中心,按主题动态显示新闻功能。
    2. 使用 Ajax  技术改进添加主题功能。
    3. 使用 Ajax 技术改进修改主题功能。
    4. 使用 Ajax 技术改进删除主题功能。

    数据库表:

    User:用户

    uid String 用户编号 not null
    uname String 用户名 not null
    upwd String 用户密码 not null

    News:新闻

    nid String 新闻编号 not null
    ntid String 主题编号 not null
    ntname String 主题名字 not null
    ntitle String 新闻标题 not null
    nauthor String 新闻作者 not null
    ncreatadate String 创建数据库 not null
    npicpath String 新闻标题图片 not null
    ncontent String 新闻目录 not null
    nmodifydate String 模式日期 not null
    nsummary String 总结 not null

    Topic:主题

    tid String 主题编号 not null
    tname String 主题名字 not null

    Comment:评论

    cid String 评论编号 not null
    cnid String 新闻编号 not null
    ccontent String 评论目录 not null
    cdate String 评论日期 not null
    cip String 评论地址 not null
    cauthor String 评论作者 not null
  • 相关阅读:
    2019总结
    数据挖掘-挖掘频繁模式、关联和相关性:基本概念和方法
    Elasticsearch-删除数据
    Elasticsearch-更新现有文档
    Elasticsearch-如何识别一篇文档
    2019-10-25 记录
    信息、数据、知识之间的关系
    螺旋式上升,螺旋形理论
    触发
    书籍阅读
  • 原文地址:https://www.cnblogs.com/cxiaojie/p/13772530.html
Copyright © 2011-2022 走看看