数据表:T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据)

T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据):描述

名称

T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据)

代码

T_ORG_BILLCHANGEENTITY

注释

 

模型

BOS

主键

Key_1


T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据):列规格定义

名称

代码

数据类型

长度

强制

注释

明细内码

FEntryID

int

 

TRUE

 

内码

FID

int

 

TRUE

 

序号

FINDEX

int

 

TRUE

 

变更后组织

FAFTERCHANGEORGID

int

 

TRUE

 

业务单据编号

FBILLNUMBER

varchar(255)

255

TRUE

 

业务单据内码

FBILLID

varchar(36)

36

TRUE

 

执行结果

FEXCUTESTAUS

char(1)

1

FALSE

 

执行信息

FEXCUTEINFO

nvarchar(255)

255

FALSE

 

单据类型

FBILLTYPE

varchar(36)

36

FALSE

 


T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据):脚本代码

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

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

/*==============================================================*/
/* Table: T_ORG_BILLCHANGEENTITY */
/*==============================================================*/
create table T_ORG_BILLCHANGEENTITY (
FEntryID int not null default 0,
FID int not null default 0,
FINDEX int not null default 0,
FAFTERCHANGEORGID int not null default 0,
FBILLNUMBER varchar(255) not null default ' ',
FBILLID varchar(36) not null default ' ',
FEXCUTESTAUS char(1) null,
FEXCUTEINFO nvarchar(255) null,
FBILLTYPE varchar(36) null,
constraint PK_T_ORG_BILLCHANGEENTITY primary key (FEntryID)
)
go

/*==============================================================*/
/* Index: IDX_ORG_BILLCHANGEENTITY */
/*==============================================================*/
create index IDX_ORG_BILLCHANGEENTITY on T_ORG_BILLCHANGEENTITY (
FID ASC
)
go


T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE


T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_ORG_BILLCHANGEENTITY

IDX_ORG_BILLCHANGEENTITY

FALSE

FALSE

FALSE

FALSE

FALSE

T_ORG_BILLCHANGEENTITY(业务单据组织变更之变更数据)