数据表:T_BOS_DevReportDSRelation

T_BOS_DevReportDSRelation:描述

名称

T_BOS_DevReportDSRelation

代码

T_BOS_DevReportDSRelation

注释

 

模型

BOS

主键

PK_BOS_DEVREPORTDSRELATION


T_BOS_DevReportDSRelation:列规格定义

名称

代码

数据类型

长度

强制

注释

FID

FID

varchar(36)

36

TRUE

 

FReportID

FReportID

varchar(36)

36

FALSE

 

FOriginDSourceID

FOriginDSourceID

varchar(36)

36

FALSE

 

FDestiDSourceID

FDestiDSourceID

varchar(36)

36

FALSE

 

FOriginFieldName

FOriginFieldName

nvarchar(100)

100

FALSE

 

FDestiFieldName

FDestiFieldName

nvarchar(100)

100

FALSE

 


T_BOS_DevReportDSRelation:脚本代码

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

/*==============================================================*/
/* Table: T_BOS_DevReportDSRelation */
/*==============================================================*/
create table T_BOS_DevReportDSRelation (
FID varchar(36) not null default newid(),
FReportID varchar(36) null,
FOriginDSourceID varchar(36) null,
FDestiDSourceID varchar(36) null,
FOriginFieldName nvarchar(100) null,
FDestiFieldName nvarchar(100) null,
constraint PK_BOS_DEVREPORTDSRELATION primary key (FID)
)
go


T_BOS_DevReportDSRelation:键值定义

名称

代码

主要的

PK_BOS_DEVREPORTDSRELATION

PK_BOS_DEVREPORTDSRELATION

TRUE