数据表:T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表)

T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表):描述

名称

T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表)

代码

T_BOS_CUSTOMPACKAGE_L

注释

 

模型

BOS

主键

PK_BOS_CUSTOMPACKAGE_L


T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FPKID

varchar(36)

36

TRUE

 

主表内码

FID

varchar(36)

36

FALSE

 

语言内码

FLOCALEID

int

 

FALSE

 

名称

FNAME

nvarchar(250)

250

FALSE

 


T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表):脚本代码

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

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

/*==============================================================*/
/* Table: T_BOS_CUSTOMPACKAGE_L */
/*==============================================================*/
create table T_BOS_CUSTOMPACKAGE_L (
FPKID varchar(36) not null default ' ',
FID varchar(36) null,
FLOCALEID int null,
FNAME nvarchar(250) null,
constraint PK_T_BOS_CUSTOMPACKAGE_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_BOS_CUSTOMPACKAGE_L */
/*==============================================================*/
create unique index IDX_BOS_CUSTOMPACKAGE_L on T_BOS_CUSTOMPACKAGE_L (
FID ASC,
FLOCALEID ASC
)
go


T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表):键值定义

名称

代码

主要的

PK_BOS_CUSTOMPACKAGE_L

PK_BOS_CUSTOMPACKAGE_L

TRUE


T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BOS_CUSTOMPACKAGE_L

IDX_BOS_CUSTOMPACKAGE_L

TRUE

FALSE

FALSE

FALSE

FALSE

T_BOS_CUSTOMPACKAGE_L(用户自定义扩展包多语言表)