数据表:t_wf_ServiceGroup_L(工作流服务分组多语言)

t_wf_ServiceGroup_L(工作流服务分组多语言):描述

名称

t_wf_ServiceGroup_L(工作流服务分组多语言)

代码

t_wf_ServiceGroup_L

注释

 

模型

BOS

主键

PK_WF_SERVICEGROUP_L


t_wf_ServiceGroup_L(工作流服务分组多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

唯一标识

FPKID

int

 

TRUE

 

分组内码

FGroupID

int

 

FALSE

 

时区

FLocaleID

int

 

FALSE

 

名称

FNAME

nvarchar(255)

255

FALSE

 


t_wf_ServiceGroup_L(工作流服务分组多语言):脚本代码

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

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

/*==============================================================*/
/* Table: t_wf_ServiceGroup_L */
/*==============================================================*/
create table t_wf_ServiceGroup_L (
FPKID int not null default 0,
FGroupID int null,
FLocaleID int null,
FNAME nvarchar(255) null,
constraint PK_WF_SERVICEGROUP_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_wf_ServiceGroup_L */
/*==============================================================*/
create unique index idx_wf_ServiceGroup_L on t_wf_ServiceGroup_L (
FGroupID ASC,
FLocaleID ASC
)
go


t_wf_ServiceGroup_L(工作流服务分组多语言):键值定义

名称

代码

主要的

PK_WF_SERVICEGROUP_L

PK_WF_SERVICEGROUP_L

TRUE


t_wf_ServiceGroup_L(工作流服务分组多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_ServiceGroup_L

idx_wf_ServiceGroup_L

TRUE

FALSE

FALSE

FALSE

FALSE

t_wf_ServiceGroup_L(工作流服务分组多语言)