数据表:t_org_orgfunc_l(组织职能多语言)

t_org_orgfunc_l(组织职能多语言):描述

名称

t_org_orgfunc_l(组织职能多语言)

代码

t_org_orgfunc_l

注释

组织职能多语言

模型

BOS

主键

pk_org_orgfunc_l


t_org_orgfunc_l(组织职能多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言内码

FPKID

int

 

TRUE

 

组织职能内码

FORGFUNCID

int

 

TRUE

 

语言码

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(80)

80

TRUE

 

描述

FDESCRIPTION

nvarchar(255)

255

TRUE

 


t_org_orgfunc_l(组织职能多语言):脚本代码

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

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

/*==============================================================*/
/* Table: t_org_orgfunc_l */
/*==============================================================*/
create table t_org_orgfunc_l (
FPKID int not null default 0,
FORGFUNCID 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_ORGFUNC_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_org_orgfunc_l */
/*==============================================================*/
create unique index idx_org_orgfunc_l on t_org_orgfunc_l (
FORGFUNCID ASC,
FLOCALEID ASC
)
go


t_org_orgfunc_l(组织职能多语言):键值定义

名称

代码

主要的

pk_org_orgfunc_l

pk_org_orgfunc_l

TRUE


t_org_orgfunc_l(组织职能多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_org_orgfunc_l

idx_org_orgfunc_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_org_orgfunc_l(组织职能多语言)