数据表:t_meta_consolesubfunc_l(模块菜单多语言)

t_meta_consolesubfunc_l(模块菜单多语言):描述

名称

t_meta_consolesubfunc_l(模块菜单多语言)

代码

T_META_CONSOLESUBFUNC_L

注释

模块菜单多语言表

模型

BOS

主键

pk_mtea_consolesubfunc_l


t_meta_consolesubfunc_l(模块菜单多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

数据编码

FPKID

varchar(36)

36

TRUE

 

模块菜单编码

FSUBFUNCID

varchar(36)

36

TRUE

 

语言

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(255)

255

TRUE

 

描述

FDESCRIPTION

nvarchar(800)

800

TRUE

 


t_meta_consolesubfunc_l(模块菜单多语言):脚本代码

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

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

/*==============================================================*/
/* Table: T_META_CONSOLESUBFUNC_L */
/*==============================================================*/
create table T_META_CONSOLESUBFUNC_L (
FPKID varchar(36) not null default '',
FSUBFUNCID varchar(36) not null default '',
FLOCALEID int not null default 0,
FNAME nvarchar(255) not null default '',
FDESCRIPTION nvarchar(800) not null default '',
constraint PK_META_CONSOLESUBFUNC_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_mtea_consolesubfunc_l */
/*==============================================================*/
create unique index idx_mtea_consolesubfunc_l on T_META_CONSOLESUBFUNC_L (
FSUBFUNCID ASC,
FLOCALEID ASC
)
go


t_meta_consolesubfunc_l(模块菜单多语言):键值定义

名称

代码

主要的

pk_mtea_consolesubfunc_l

pk_mtea_consolesubfunc_l

TRUE


t_meta_consolesubfunc_l(模块菜单多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_mtea_consolesubfunc_l

idx_mtea_consolesubfunc_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_meta_consolesubfunc_l(模块菜单多语言)