数据表:t_wf_prclaunchconfig_l(流程模板配置明细多于言表)

t_wf_prclaunchconfig_l(流程模板配置明细多于言表):描述

名称

t_wf_prclaunchconfig_l(流程模板配置明细多于言表)

代码

t_wf_prclaunchconfig_l

注释

 

模型

BOS

主键

pk_wf_prclaunchconfig_l


t_wf_prclaunchconfig_l(流程模板配置明细多于言表):列规格定义

名称

代码

数据类型

长度

强制

注释

唯一标识

fpkid

int

 

TRUE

 

配置ID

ftmpdetailid

int

 

TRUE

 

时区

flocaleid

int

 

TRUE

 

启动条件描述

flaunchdes

varchar(255)

255

FALSE

 


t_wf_prclaunchconfig_l(流程模板配置明细多于言表):脚本代码

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

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

/*==============================================================*/
/* Table: t_wf_prclaunchconfig_l */
/*==============================================================*/
create table t_wf_prclaunchconfig_l (
fpkid int not null default 0,
ftmpdetailid int not null default 0,
flocaleid int not null default 0,
flaunchdes varchar(255) null,
constraint PK_WF_PRCLAUNCHCONFIG_L primary key (fpkid)
)
go

/*==============================================================*/
/* Index: idx_wf_prclaunchconfig_l */
/*==============================================================*/
create unique index idx_wf_prclaunchconfig_l on t_wf_prclaunchconfig_l (
ftmpdetailid ASC,
flocaleid ASC
)
go


t_wf_prclaunchconfig_l(流程模板配置明细多于言表):键值定义

名称

代码

主要的

pk_wf_prclaunchconfig_l

pk_wf_prclaunchconfig_l

TRUE


t_wf_prclaunchconfig_l(流程模板配置明细多于言表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_prclaunchconfig_l

idx_wf_prclaunchconfig_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_wf_prclaunchconfig_l(流程模板配置明细多于言表)