数据表:T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段)

T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段):描述

名称

T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段)

代码

T_ORG_BILLCTRLFIELDENTITY

注释

 

模型

BOS

主键

Key_1


T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段):列规格定义

名称

代码

数据类型

长度

强制

注释

明细内码

FENTRYID

int

 

TRUE

 

内码

FID

int

 

TRUE

 

序号

FINDEX

int

 

TRUE

 

字段名

FFIELDNAME

nvarchar(100)

100

TRUE

 

字段标识

FFIELDKEY

nvarchar(80)

80

TRUE

 

控制方式

FCONTROLTYPEID

char(1)

1

TRUE

 

默认值

FDEFAULTVALUE

nvarchar(100)

100

TRUE

 


T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段):脚本代码

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

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

/*==============================================================*/
/* Table: T_ORG_BILLCTRLFIELDENTITY */
/*==============================================================*/
create table T_ORG_BILLCTRLFIELDENTITY (
FENTRYID int not null default 0,
FID int not null default 0,
FINDEX int not null default 0,
FFIELDNAME nvarchar(100) not null default ' ',
FFIELDKEY nvarchar(80) not null default ' ',
FCONTROLTYPEID char(1) not null default '1',
FDEFAULTVALUE nvarchar(100) not null default ' ',
constraint PK_T_ORG_BILLCTRLFIELDENTITY primary key (FENTRYID)
)
go

/*==============================================================*/
/* Index: IDX_ORG_BILLCTRLFIELDENTITY */
/*==============================================================*/
create index IDX_ORG_BILLCTRLFIELDENTITY on T_ORG_BILLCTRLFIELDENTITY (
FID ASC
)
go


T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE


T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_ORG_BILLCTRLFIELDENTITY

IDX_ORG_BILLCTRLFIELDENTITY

FALSE

FALSE

FALSE

FALSE

FALSE

T_ORG_BILLCTRLFIELDENTITY(业务单据组织变更之受控字段)