数据表:T_WF_ACTINSTHIS_L(节点实例多语言_历史)

T_WF_ACTINSTHIS_L(节点实例多语言_历史):描述

名称

T_WF_ACTINSTHIS_L(节点实例多语言_历史)

代码

T_WF_ACTINSTHIS_L

注释

节点实例多语言_历史

模型

BOS

主键

PK_WF_ActInstHIS_L


T_WF_ACTINSTHIS_L(节点实例多语言_历史):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FPKID

varchar(36)

36

TRUE

 

节点实例内码

FACTINSTID

varchar(36)

36

TRUE

 

语言

FLOCALEID

int

 

TRUE

 

节点名称

FACTNAME

nvarchar(100)

100

FALSE

 


T_WF_ACTINSTHIS_L(节点实例多语言_历史):脚本代码

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

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

/*==============================================================*/
/* Table: T_WF_ACTINSTHIS_L */
/*==============================================================*/
create table T_WF_ACTINSTHIS_L (
FPKID varchar(36) not null default NEWID(),
FACTINSTID varchar(36) not null default '',
FLOCALEID int not null default 0,
FACTNAME nvarchar(100) null default '',
constraint PK_WF_ActInstHIS_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_WF_ACTINSTHISL */
/*==============================================================*/
create unique index IDX_WF_ACTINSTHISL on T_WF_ACTINSTHIS_L (
FACTINSTID ASC,
FLOCALEID ASC
)
go


T_WF_ACTINSTHIS_L(节点实例多语言_历史):键值定义

名称

代码

主要的

PK_WF_ActInstHIS_L

PK_WF_ActInstHIS_L

TRUE


T_WF_ACTINSTHIS_L(节点实例多语言_历史):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_WF_ACTINSTHISL

IDX_WF_ACTINSTHISL

TRUE

FALSE

FALSE

FALSE

FALSE

T_WF_ACTINSTHIS_L(节点实例多语言_历史)