数据表:T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言)

T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言):描述

名称

T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言)

代码

T_BAS_MONITORINGPARAMETER_L

注释

 

模型

BOS

主键

T_BAS_MONITORINGPARAMETER_L


T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FPKID

int

 

TRUE

 

编码

FID

int

 

TRUE

 

语言类型内码

FLOCALEID

int

 

TRUE

 

参数key

FPARAMKEY

nvarchar(30)

30

TRUE

 

参数名称

FNAME

nvarchar(255)

255

TRUE

 

描述

FDESCRIPTION

nvarchar(255)

255

TRUE

 


T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_MONITORINGPARAMETER_L */
/*==============================================================*/
create table T_BAS_MONITORINGPARAMETER_L (
FPKID int not null default 0,
FID int not null default 0,
FLOCALEID int not null default 0,
FPARAMKEY nvarchar(30) not null default ' ',
FNAME nvarchar(255) not null default ' ',
FDESCRIPTION nvarchar(255) not null default ' ',
constraint PK_BAS_MONITORINGPARAMETER_L primary key (FPKID)
)
go


T_BAS_MONITORINGPARAMETER_L(监控参数设置多语言):键值定义

名称

代码

主要的

T_BAS_MONITORINGPARAMETER_L

T_BAS_MONITORINGPARAMETER_L

TRUE