数据表:t_wf_templatetype(模板分类)

t_wf_templatetype(模板分类):描述

名称

t_wf_templatetype(模板分类)

代码

t_wf_templatetype

注释

 

模型

BOS

主键

pk_wf_templatetype


t_wf_templatetype(模板分类):列规格定义

名称

代码

数据类型

长度

强制

注释

分类ID

fid

int

 

TRUE

 

分类编码

fnumber

varchar(100)

100

TRUE

 

分组ID

fgroupid

varchar(36)

36

TRUE

 

父ID

fparentid

int

 

TRUE

 

完整ID

ffullparentid

varchar(500)

500

TRUE

 

左节点

fleft

int

 

TRUE

 

右节点

fright

int

 

TRUE

 


t_wf_templatetype(模板分类):脚本代码

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

/*==============================================================*/
/* Table: t_wf_templatetype */
/*==============================================================*/
create table t_wf_templatetype (
fid int not null default 0,
fnumber varchar(100) not null default '',
fgroupid varchar(36) not null default '',
fparentid int not null default 0,
ffullparentid varchar(500) not null default '',
fleft int not null default 0,
fright int not null default 0,
constraint PK_WF_TEMPLATETYPE primary key (fid)
)
go


t_wf_templatetype(模板分类):键值定义

名称

代码

主要的

pk_wf_templatetype

pk_wf_templatetype

TRUE