数据表:t_org_organizations_l(组织机构多语言)

t_org_organizations_l(组织机构多语言):描述

名称

t_org_organizations_l(组织机构多语言)

代码

t_org_organizations_l

注释

组织机构多语言表

模型

BOS

主键

pk_org_organizations_l


t_org_organizations_l(组织机构多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言内码

FPKID

int

 

TRUE

 

组织内码

FORGID

int

 

TRUE

 

语言码

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(255)

255

TRUE

 

描述

FDESCRIPTION

nvarchar(255)

255

TRUE

 

地址

FADDRESS

nvarchar(255)

255

TRUE

 


t_org_organizations_l(组织机构多语言):脚本代码

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

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

/*==============================================================*/
/* Table: t_org_organizations_l */
/*==============================================================*/
create table t_org_organizations_l (
FPKID int not null default 0,
FORGID int not null default 0,
FLOCALEID int not null default 0,
FNAME nvarchar(255) not null default ' ',
FDESCRIPTION nvarchar(255) not null default ' ',
FADDRESS nvarchar(255) not null default ' ',
constraint PK_ORG_ORGANIZATIONS_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_org_organizations_l */
/*==============================================================*/
create unique index idx_org_organizations_l on t_org_organizations_l (
FORGID ASC,
FLOCALEID ASC
)
go


t_org_organizations_l(组织机构多语言):键值定义

名称

代码

主要的

pk_org_organizations_l

pk_org_organizations_l

TRUE


t_org_organizations_l(组织机构多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_org_organizations_l

idx_org_organizations_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_org_organizations_l(组织机构多语言)