• 新闻系统需求分析


    需求分析:

    项目需求概述:

    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
  • 相关阅读:
    Seaborn学习笔记2
    Seaborn学习笔记1
    HTML学习笔记4
    HTML学习笔记3
    HTML学习笔记2

    指针与引用
    函数
    字符串
    C++简易
  • 原文地址:https://www.cnblogs.com/cxiaojie/p/13772530.html
Copyright © 2020-2023  润新知