数据表:t_KDS_Rpt_l(电子表格主表多语言表)

t_KDS_Rpt_l(电子表格主表多语言表):描述

名称

t_KDS_Rpt_l(电子表格主表多语言表)

代码

t_KDS_Rpt_l

注释

t_KDS_Rpt(电子表格主表多语言表)

模型

BOS

主键

PK_KDS_Rpt_l


t_KDS_Rpt_l(电子表格主表多语言表):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言主键

FPKId

varchar(36)

36

TRUE

 

报表内码

FRptID

varchar(36)

36

TRUE

常用函数表内码

语言标示

FLocaleId

int

 

TRUE

 


t_KDS_Rpt_l(电子表格主表多语言表):脚本代码

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

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

/*==============================================================*/
/* Table: t_KDS_Rpt_l */
/*==============================================================*/
create table t_KDS_Rpt_l (
FPKId varchar(36) not null default ' ',
FRptID varchar(36) not null default ' ',
FLocaleId int not null default 0,
constraint PK_T_KDS_RPT_L primary key (FPKId)
)
go

/*==============================================================*/
/* Index: IDX_KDS_RPT_L_FRPTID */
/*==============================================================*/
create index IDX_KDS_RPT_L_FRPTID on t_KDS_Rpt_l (
FRptID ASC
)
go


t_KDS_Rpt_l(电子表格主表多语言表):键值定义

名称

代码

主要的

PK_KDS_Rpt_l

PK_KDS_Rpt_l

TRUE


t_KDS_Rpt_l(电子表格主表多语言表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_KDS_RPT_L_FRPTID

IDX_KDS_RPT_L_FRPTID

FALSE

FALSE

FALSE

FALSE

FALSE

t_KDS_Rpt_l(电子表格主表多语言表)