数据表:T_WF_MESSAGESETTING(信息中心个人设置)

T_WF_MESSAGESETTING(信息中心个人设置):描述

名称

T_WF_MESSAGESETTING(信息中心个人设置)

代码

T_WF_MESSAGESETTING

注释

信息中心个人设置表,对消息和任务进行用户级别个性化设置

模型

BOS

主键

pk_wf_messagesetting


T_WF_MESSAGESETTING(信息中心个人设置):列规格定义

名称

代码

数据类型

长度

强制

注释

用户内码

FUSERID

int

 

TRUE

 

消息清除策略状态

FMSGPOLICYSTATUS

char(1)

1

TRUE

0:未启用;1启用

消息清除策略

FMSGPOLICY

char(1)

1

TRUE

自动移动到废件箱:0
自动被永久清除:1

消息保留天数

FMSGSAVEDAY

int

 

FALSE

 

删除消息清除策略状态

FMSGCLEARPOLICYSTATUS

char(1)

1

TRUE

0:未启用;1启用

删除消息清除策略

FMSGCLEARPOLICY

char(1)

1

TRUE

0:自动清空废件箱全部消息;1:自动清除特定天前的消息

删除消息保留天数

FMSGCLEARRANGE

int

 

FALSE

 

显示在办流程

FSHOWWORKFLOW

char(1)

1

TRUE

0:自动清空废件箱全部消息;1:自动清除特定天前的消息

显示监控消息

FSHOWWARNMSG

char(1)

1

TRUE

0:自动清空废件箱全部消息;1:自动清除特定天前的消息

显示已处理任务

FSHOWFINISHEDTASK

char(1)

1

TRUE

0:自动清空废件箱全部消息;1:自动清除特定天前的消息

显示流程消息

FSHOWWORKFLOWMES

char(1)

1

TRUE

0:自动清空废件箱全部消息;1:自动清除特定天前的消息

批量处理操作后清空选中行

FCLEARSELECTEDROW

char(1)

1

TRUE

 


T_WF_MESSAGESETTING(信息中心个人设置):脚本代码

if exists (select 1
from sysindexes
where id = object_id('T_WF_MESSAGESETTING')
and name = 'idx_WF_Message_FReceiverId2'
and indid > 0
and indid < 255)
drop index T_WF_MESSAGESETTING.idx_WF_Message_FReceiverId2
go

if exists (select 1
from sysobjects
where id = object_id('T_WF_MESSAGESETTING')
and type = 'U')
drop table T_WF_MESSAGESETTING
go

/*==============================================================*/
/* Table: T_WF_MESSAGESETTING */
/*==============================================================*/
create table T_WF_MESSAGESETTING (
FUSERID int not null default 0,
FMSGPOLICYSTATUS char(1) not null default '0',
FMSGPOLICY char(1) not null default '0',
FMSGSAVEDAY int null default 60,
FMSGCLEARPOLICYSTATUS char(1) not null default '1',
FMSGCLEARPOLICY char(1) not null default '0',
FMSGCLEARRANGE int null,
FSHOWWORKFLOW char(1) not null default '1',
FSHOWWARNMSG char(1) not null default '1',
FSHOWFINISHEDTASK char(1) not null default '0',
FSHOWWORKFLOWMES char(1) not null default '0',
FCLEARSELECTEDROW char(1) not null default '0',
constraint pk_wf_messagesetting primary key (FUSERID)
)
go

/*==============================================================*/
/* Index: idx_WF_Message_FReceiverId2 */
/*==============================================================*/
create index idx_WF_Message_FReceiverId2 on T_WF_MESSAGESETTING (
FMSGCLEARPOLICY ASC
)
go


T_WF_MESSAGESETTING(信息中心个人设置):键值定义

名称

代码

主要的

pk_wf_messagesetting

pk_wf_messagesetting

TRUE


T_WF_MESSAGESETTING(信息中心个人设置):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_WF_Message_FReceiverId2

idx_WF_Message_FReceiverId2

FALSE

FALSE

FALSE

FALSE

FALSE

T_WF_MESSAGESETTING(信息中心个人设置)