数据表:t_wf_template_tvrelation(流程模板树型结构)

t_wf_template_tvrelation(流程模板树型结构):描述

名称

t_wf_template_tvrelation(流程模板树型结构)

代码

t_wf_template_tvrelation

注释

 

模型

BOS

主键

pk_wf_template_tvrelation


t_wf_template_tvrelation(流程模板树型结构):列规格定义

名称

代码

数据类型

长度

强制

注释

模板ID

ftmpid

int

 

TRUE

 

左节点

fleft

int

 

FALSE

 

右节点

fright

int

 

FALSE

 


t_wf_template_tvrelation(流程模板树型结构):脚本代码

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

/*==============================================================*/
/* Table: t_wf_template_tvrelation */
/*==============================================================*/
create table t_wf_template_tvrelation (
ftmpid int not null default 0,
fleft int null,
fright int null,
constraint PK_WF_TEMPLATE_TVRELATION primary key (ftmpid)
)
go


t_wf_template_tvrelation(流程模板树型结构):键值定义

名称

代码

主要的

pk_wf_template_tvrelation

pk_wf_template_tvrelation

TRUE