数据表:t_WF_BusinessService_L(工作流服务多语言表

t_WF_BusinessService_L(工作流服务多语言表:描述

名称

t_WF_BusinessService_L(工作流服务多语言表

代码

t_WF_BusinessService_L

注释

 

模型

BOS

主键

PK_WF_BUSINESSSERVICE_L


t_WF_BusinessService_L(工作流服务多语言表:列规格定义

名称

代码

数据类型

长度

强制

注释

唯一标识

FPKID

int

 

TRUE

 

服务内码ID

FID

int

 

FALSE

 

时区

FLocaleID

int

 

FALSE

 

服务名称

FName

nvarchar(255)

255

FALSE

 


t_WF_BusinessService_L(工作流服务多语言表:脚本代码

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

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

/*==============================================================*/
/* Table: t_WF_BusinessService_L */
/*==============================================================*/
create table t_WF_BusinessService_L (
FPKID int not null default 0,
FID int null,
FLocaleID int null,
FName nvarchar(255) null,
constraint PK_WF_BUSINESSSERVICE_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_wf_businessService */
/*==============================================================*/
create unique index idx_wf_businessService on t_WF_BusinessService_L (
FID ASC,
FLocaleID ASC
)
go


t_WF_BusinessService_L(工作流服务多语言表:键值定义

名称

代码

主要的

PK_WF_BUSINESSSERVICE_L

PK_WF_BUSINESSSERVICE_L

TRUE


t_WF_BusinessService_L(工作流服务多语言表:索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_businessService

idx_wf_businessService

TRUE

FALSE

FALSE

FALSE

FALSE

t_WF_BusinessService_L(工作流服务多语言表