数据表:T_ORG_BIZRELATION_L(组织业务关系多语言)

T_ORG_BIZRELATION_L(组织业务关系多语言):描述

名称

T_ORG_BIZRELATION_L(组织业务关系多语言)

代码

T_ORG_BIZRELATION_L

注释

组织业务关系多语言

模型

BOS

主键

pk_org_bizrelation_l


T_ORG_BIZRELATION_L(组织业务关系多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言内码

FPKID

int

 

TRUE

 

组织业务关系内码

FBIZRELATIONID

int

 

TRUE

 

语言码

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(80)

80

TRUE

 

描述

FDESCRIPTION

nvarchar(255)

255

TRUE

 


T_ORG_BIZRELATION_L(组织业务关系多语言):脚本代码

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

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

/*==============================================================*/
/* Table: T_ORG_BIZRELATION_L */
/*==============================================================*/
create table T_ORG_BIZRELATION_L (
FPKID int not null default 0,
FBIZRELATIONID int not null default 0,
FLOCALEID int not null default 0,
FNAME nvarchar(80) not null default '',
FDESCRIPTION nvarchar(255) not null default '',
constraint PK_ORG_BIZRELATION_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_org_bizrelation_l */
/*==============================================================*/
create unique index idx_org_bizrelation_l on T_ORG_BIZRELATION_L (
FBIZRELATIONID ASC,
FLOCALEID ASC
)
go


T_ORG_BIZRELATION_L(组织业务关系多语言):键值定义

名称

代码

主要的

pk_org_bizrelation_l

pk_org_bizrelation_l

TRUE


T_ORG_BIZRELATION_L(组织业务关系多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_org_bizrelation_l

idx_org_bizrelation_l

TRUE

FALSE

FALSE

FALSE

FALSE

T_ORG_BIZRELATION_L(组织业务关系多语言)