数据表:t_bas_mobileconsole_l(移动功能菜单多语言表)

t_bas_mobileconsole_l(移动功能菜单多语言表):描述

名称

t_bas_mobileconsole_l(移动功能菜单多语言表)

代码

T_BAS_MOBILECONSOLE_L

注释

移动功能菜单多语言表

模型

BOS

主键

pk_BAS_MOBILECONSOLE_L


t_bas_mobileconsole_l(移动功能菜单多语言表):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言内码

FPKID

varchar(36)

36

TRUE

 

菜单内码

FID

varchar(36)

36

TRUE

 

语言

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(50)

50

TRUE

 


t_bas_mobileconsole_l(移动功能菜单多语言表):脚本代码

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

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

/*==============================================================*/
/* Table: T_BAS_MOBILECONSOLE_L */
/*==============================================================*/
create table T_BAS_MOBILECONSOLE_L (
FPKID varchar(36) not null default '',
FID varchar(36) not null default '',
FLOCALEID int not null default 0,
FNAME nvarchar(50) not null default '',
constraint PK_BAS_MOBILECONSOLE_L primary key (FPKID)
)
go

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


t_bas_mobileconsole_l(移动功能菜单多语言表):键值定义

名称

代码

主要的

pk_BAS_MOBILECONSOLE_L

pk_BAS_MOBILECONSOLE_L

TRUE


t_bas_mobileconsole_l(移动功能菜单多语言表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_BAS_MOBILECONSOLE_L

idx_BAS_MOBILECONSOLE_L

TRUE

FALSE

FALSE

FALSE

FALSE

t_bas_mobileconsole_l(移动功能菜单多语言表)