M2第二天DailyScrum——PM(李忠)

今天我们的工作正常进行着,我今天往数据库里面加入了网页内容存储的设计,下面是我们和pipleline组网页内容提取小组的数据库设计:

//Web Page Create Table WebPage{ wid int primary key,    //wid是我们UI组查询必须要用到的唯一标识一个网页的标识

title nvarchar(255) not null,

author nvarchar(255) not null,

postdate date not null,

link nvarchar(255) not null,

referred nvarchar(255) not null,

abstract nvarchar(255) not null,

views int not null,              //浏览量

rate smallint not null           //各个评分等级的比率

};

Create Table WebPage_Tags{       //用于连接网页表与标签表

taid int not null,

wid int not null,

primary key (taid,wid)

};

create table tags{        //标签

 taid int primary key not null,  

name char(20) not null,  

prevtaid int

};

create table rates{

id int not null,  

type bit not null,  

zero int not null,  

one int not null,  

two int not null,  

three int not null,  

four int not null,  f

ive int not null

};

 

明天的工作分配:

组员 任务ID 任务
李忠 362 接着昨天的工作,准备好实现反骚扰部分
陈伯雄 363 接着昨天的工作,和李忠一起准备好实现反骚扰部分
刘宇翔 364 对第二大组提取的网页内容的展示
张孝祖 365 和刘宇翔一起做对网页内容的展示
苏若 366 和刘宇翔一起做对网页内容的展示

 

你可能感兴趣的:(Scrum)