数据表:T_BAS_LAYOUT_L(布局多语言表)

T_BAS_LAYOUT_L(布局多语言表):描述

名称

T_BAS_LAYOUT_L(布局多语言表)

代码

T_BAS_LAYOUT_L

注释

 

模型

BOS

主键

Key_BAS_LAYOUT_L


T_BAS_LAYOUT_L(布局多语言表):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FPKID

bigint

 

TRUE

 

布局ID

FID

bigint

 

TRUE

 

语言内码

FLOCALEID

int

 

TRUE

 

布局名称

FNAME

nvarchar(255)

255

TRUE

 


T_BAS_LAYOUT_L(布局多语言表):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_LAYOUT_L */
/*==============================================================*/
create table T_BAS_LAYOUT_L (
FPKID bigint not null,
FID bigint not null,
FLOCALEID int not null,
FNAME nvarchar(255) not null,
constraint PK_BAS_LAYOUT_L primary key (FPKID)
)
go


T_BAS_LAYOUT_L(布局多语言表):键值定义

名称

代码

主要的

Key_BAS_LAYOUT_L

Key_BAS_LAYOUT_L

TRUE