数据表:T_WF_ACTINSTMSGHIS(节点实例消息历史表)

T_WF_ACTINSTMSGHIS(节点实例消息历史表):描述

名称

T_WF_ACTINSTMSGHIS(节点实例消息历史表)

代码

T_WF_ACTINSTMSGHIS

注释

T_WF_ACTINSTMSGHIS(节点实例消息历史表)

模型

BOS

主键

Key_1


T_WF_ACTINSTMSGHIS(节点实例消息历史表):列规格定义

名称

代码

数据类型

长度

强制

注释

节点实例消息内码

FACTINSTMSGID

varchar(36)

36

TRUE

 

接收人

接收人

int

 

TRUE

 

创建时间

FCREATETIME

datetime

 

FALSE

 

流程实例内码

FPROCINSTID

varchar(36)

36

FALSE

 

节点定义ID

FACTIVITYID

int

 

FALSE

 


T_WF_ACTINSTMSGHIS(节点实例消息历史表):脚本代码

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

/*==============================================================*/
/* Table: T_WF_ACTINSTMSGHIS */
/*==============================================================*/
create table T_WF_ACTINSTMSGHIS (
FACTINSTMSGID varchar(36) not null default newid(),
接收人 int not null default 0,
FCREATETIME datetime null,
FPROCINSTID varchar(36) null,
FACTIVITYID int null,
constraint PK_T_WF_ACTINSTMSGHIS primary key (FACTINSTMSGID)
)
go


T_WF_ACTINSTMSGHIS(节点实例消息历史表):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE