数据表:t_wf_template_l(流程模板多语言)

t_wf_template_l(流程模板多语言):描述

名称

t_wf_template_l(流程模板多语言)

代码

t_wf_template_l

注释

 

模型

BOS

主键

pk_wf_template_l


t_wf_template_l(流程模板多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

唯一标识

fpkid

int

 

TRUE

 

模板ID

ftmpid

int

 

TRUE

 

时区

flocaleid

int

 

TRUE

 

模板名称

fname

varchar(255)

255

FALSE

 

模板描述

fdescription

varchar(255)

255

FALSE

 


t_wf_template_l(流程模板多语言):脚本代码

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

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

/*==============================================================*/
/* Table: t_wf_template_l */
/*==============================================================*/
create table t_wf_template_l (
fpkid int not null default 0,
ftmpid int not null default 0,
flocaleid int not null default 0,
fname varchar(255) null,
fdescription varchar(255) null,
constraint PK_WF_TEMPLATE_L primary key (fpkid)
)
go

/*==============================================================*/
/* Index: idx_wf_template_l */
/*==============================================================*/
create unique index idx_wf_template_l on t_wf_template_l (
ftmpid ASC,
flocaleid ASC
)
go


t_wf_template_l(流程模板多语言):键值定义

名称

代码

主要的

pk_wf_template_l

pk_wf_template_l

TRUE


t_wf_template_l(流程模板多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_template_l

idx_wf_template_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_wf_template_l(流程模板多语言)