数据表:t_bf_processtype(业务流程流程分类) --- 作废

t_bf_processtype(业务流程流程分类) --- 作废:描述

名称

t_bf_processtype(业务流程流程分类) --- 作废

代码

t_bf_processtype

注释

 

模型

BOS

主键

PK_BF_ProcessType


t_bf_processtype(业务流程流程分类) --- 作废:列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FId

int

 

TRUE

 

编码

FNumber

nvarchar(100)

100

FALSE

 

分组内码

FGroupId

varchar(36)

36

FALSE

 

父内码

FParentId

int

 

FALSE

 

所有父内码

FFullParentId

varchar(500)

500

FALSE

 

FLeft

FLeft

int

 

FALSE

 

FRight

FRight

int

 

FALSE

 


t_bf_processtype(业务流程流程分类) --- 作废:脚本代码

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

/*==============================================================*/
/* Table: t_bf_processtype */
/*==============================================================*/
create table t_bf_processtype (
FId int not null,
FNumber nvarchar(100) null,
FGroupId varchar(36) null default '',
FParentId int null default 0,
FFullParentId varchar(500) null default '',
FLeft int null default 0,
FRight int null default 0,
constraint PK_BF_PROCESSTYPE primary key (FId)
)
go


t_bf_processtype(业务流程流程分类) --- 作废:键值定义

名称

代码

主要的

PK_BF_ProcessType

PK_BF_ProcessType

TRUE