数据表:t_org_bizrelation(组织业务关系)

t_org_bizrelation(组织业务关系):描述

名称

t_org_bizrelation(组织业务关系)

代码

T_ORG_BIZRELATION

注释

组织业务关系

模型

BOS

主键

pk_org_bizrelation


t_org_bizrelation(组织业务关系):列规格定义

名称

代码

数据类型

长度

强制

注释

组织业务关系内码

FBIZRELATIONID

int

 

TRUE

 

业务类型内码

FBRTYPEID

int

 

TRUE

 

创建人

FCREATORID

int

 

TRUE

 

创建日期

FCREATEDATE

datetime

 

FALSE

 

修改人

FMODIFIERID

int

 

TRUE

 

修改日期

FMODIFYDATE

datetime

 

FALSE

 

禁用人

FFORBIDORID

int

 

TRUE

 

禁用日期

FFORBIDDATE

datetime

 

FALSE

 

审核人

FAUDITORID

int

 

TRUE

 

审核日期

FAUDITDATE

datetime

 

FALSE

 

状态

FDOCUMENTSTATUS

char(1)

1

TRUE

 

禁用状态

FFORBIDSTATUS

char(1)

1

TRUE

 

编号

FNUMBER

nvarchar(30)

30

TRUE

 


t_org_bizrelation(组织业务关系):脚本代码

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

/*==============================================================*/
/* Table: T_ORG_BIZRELATION */
/*==============================================================*/
create table T_ORG_BIZRELATION (
FBIZRELATIONID int not null default 0,
FBRTYPEID int not null default 0,
FCREATORID int not null default 0,
FCREATEDATE datetime null,
FMODIFIERID int not null default 0,
FMODIFYDATE datetime null,
FFORBIDORID int not null default 0,
FFORBIDDATE datetime null,
FAUDITORID int not null default 0,
FAUDITDATE datetime null,
FDOCUMENTSTATUS char(1) not null default '',
FFORBIDSTATUS char(1) not null default '',
FNUMBER nvarchar(30) not null default '',
constraint PK_ORG_BIZRELATION primary key (FBIZRELATIONID)
)
go


t_org_bizrelation(组织业务关系):键值定义

名称

代码

主要的

pk_org_bizrelation

PK_ORG_BIZRELATION

TRUE