数据表:T_META_FormMetaServicePlugIn(元数据插件表)

T_META_FormMetaServicePlugIn(元数据插件表):描述

名称

T_META_FormMetaServicePlugIn(元数据插件表)

代码

T_META_FormMetaServicePlugIn

注释

 

模型

BOS

主键

Key_1


T_META_FormMetaServicePlugIn(元数据插件表):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FID

varchar(36)

36

TRUE

 

表单对象ID

FObjectID

varchar(40)

40

TRUE

 

程序集名

FClassName

varchar(300)

300

TRUE

 

序号

FSEQ

int

 

FALSE

 


T_META_FormMetaServicePlugIn(元数据插件表):脚本代码

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

/*==============================================================*/
/* Table: T_META_FormMetaServicePlugIn */
/*==============================================================*/
create table T_META_FormMetaServicePlugIn (
FID varchar(36) not null default ' ',
FObjectID varchar(40) not null default ' ',
FClassName varchar(300) not null default ' ',
FSEQ int null default 1,
constraint PK_T_META_FORMMETASERVICEPLUGI primary key (FID)
)
go


T_META_FormMetaServicePlugIn(元数据插件表):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE