数据表:t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表)

t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表):描述

名称

t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表)

代码

t_Kds_ItemRelaAllocateEntry

注释

t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表)
此表为已选勾稽关系的数据,待选勾稽关系的数据不需要保存,待选勾稽关系直接在代码中绑定

模型

BOS

主键

PK_Kds_ItemRelaAllocateEntry


t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表):列规格定义

名称

代码

数据类型

长度

强制

注释

勾稽关系分配分录内码

FEntryId

int

 

TRUE

 

勾稽关系分配内码

FId

int

 

TRUE

 

勾稽关系内码

FRelationId

int

 

TRUE

 


t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表):脚本代码

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

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

/*==============================================================*/
/* Table: t_Kds_ItemRelaAllocateEntry */
/*==============================================================*/
create table t_Kds_ItemRelaAllocateEntry (
FEntryId int not null default 0,
FId int not null default 0,
FRelationId int not null default 0,
constraint PK_T_KDS_ITEMRELAALLOCATEENTRY primary key (FEntryId)
)
go

/*==============================================================*/
/* Index: IDX_Kds_ItemRAleEntry_FId */
/*==============================================================*/
create index IDX_Kds_ItemRAleEntry_FId on t_Kds_ItemRelaAllocateEntry (
FId ASC
)
go


t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表):键值定义

名称

代码

主要的

PK_Kds_ItemRelaAllocateEntry

PK_Kds_ItemRelaAllocateEntry

TRUE


t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_Kds_ItemRAleEntry_FId

IDX_Kds_ItemRAleEntry_FId

FALSE

FALSE

FALSE

FALSE

FALSE

t_Kds_ItemRelaAllocateEntry(表间勾稽关系分配明细表)