数据表:t_BF_SnapHis_Row(历史新数据行)

t_BF_SnapHis_Row(历史新数据行):描述

名称

t_BF_SnapHis_Row(历史新数据行)

代码

t_BF_SnapHis_Row

注释

 

模型

BOS

主键

Key_1


t_BF_SnapHis_Row(历史新数据行):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FRowId

bigint

 

TRUE

 

反写记录表内码

FCID

varchar(120)

120

FALSE

 

单据信息内码

FBillInfoId

int

 

FALSE

 

源表内码

FSId

bigint

 

FALSE

 

目标表内码

FTId

bigint

 

FALSE

 

源单携带值集合

FAmounts

varchar(200)

200

FALSE

 


t_BF_SnapHis_Row(历史新数据行):脚本代码

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

/*==============================================================*/
/* Table: t_BF_SnapHis_Row */
/*==============================================================*/
create table t_BF_SnapHis_Row (
FRowId bigint not null,
FCID varchar(120) null,
FBillInfoId int null,
FSId bigint null,
FTId bigint null,
FAmounts varchar(200) null,
constraint PK_T_BF_SNAPHIS_ROW primary key (FRowId)
)
go


t_BF_SnapHis_Row(历史新数据行):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE