数据表:T_KDS_RPTLOCALE(报表客户端多语言主表)

T_KDS_RPTLOCALE(报表客户端多语言主表):描述

名称

T_KDS_RPTLOCALE(报表客户端多语言主表)

代码

T_KDS_RPTLOCALE

注释

报表客户端多语言主表

模型

BOS

主键

PK_KDS_RPTLOCALE


T_KDS_RPTLOCALE(报表客户端多语言主表):列规格定义

名称

代码

数据类型

长度

强制

注释

单元格多语言ID

FID

int

 

TRUE

 

报表模板类型

FRPTTYPE

int

 

TRUE

 

是否报表模板

FISSAMPLE

char(1)

1

TRUE

 

是否系统预置

FISPRESET

char(1)

1

TRUE

 

报表ID

FRPTID

varchar(36)

36

TRUE

 

表页ID

FSHEETID

varchar(36)

36

TRUE

 

单元格行

FROW

int

 

TRUE

 

单元格列

FCOLUMN

int

 

TRUE

 


T_KDS_RPTLOCALE(报表客户端多语言主表):脚本代码

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

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

/*==============================================================*/
/* Table: T_KDS_RPTLOCALE */
/*==============================================================*/
create table T_KDS_RPTLOCALE (
FID int not null default 0,
FRPTTYPE int not null default 0,
FISSAMPLE char(1) not null default '0',
FISPRESET char(1) not null default '0',
FRPTID varchar(36) not null default ' ',
FSHEETID varchar(36) not null default ' ',
FROW int not null default 0,
FCOLUMN int not null default 0,
constraint PK_KDS_RPTLOCALE primary key (FID, FRPTID, FSHEETID, FROW, FCOLUMN)
)
go

/*==============================================================*/
/* Index: IDX_KDS_RPTLOCALE_ID */
/*==============================================================*/
create index IDX_KDS_RPTLOCALE_ID on T_KDS_RPTLOCALE (
FID ASC,
FRPTID ASC
)
go


T_KDS_RPTLOCALE(报表客户端多语言主表):键值定义

名称

代码

主要的

PK_KDS_RPTLOCALE

PK_KDS_RPTLOCALE

TRUE


T_KDS_RPTLOCALE(报表客户端多语言主表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_KDS_RPTLOCALE_ID

IDX_KDS_RPTLOCALE_ID

FALSE

FALSE

FALSE

FALSE

FALSE

T_KDS_RPTLOCALE(报表客户端多语言主表)