数据表:T_WF_ConditionType(自定义条件类型)

T_WF_ConditionType(自定义条件类型):描述

名称

T_WF_ConditionType(自定义条件类型)

代码

T_WF_ConditionType

注释

自定义条件类型

模型

BOS

主键

PK_WF_ConditionType


T_WF_ConditionType(自定义条件类型):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FID

int

 

TRUE

 

编码

FNumber

nvarchar(30)

30

TRUE

 

创建人

FCreatorId

int

 

TRUE

 

创建日期

FCreateDate

datetime

 

TRUE

 

修改人

FModifierId

int

 

TRUE

 

修改日期

FModifyDate

datetime

 

TRUE

 

数据状态

FDocumentStatus

char(1)

1

TRUE

 

禁用状态

FForbidStatus

char(1)

1

TRUE

 

条件单据类型

FObjectTypeId

varchar(36)

36

TRUE

 

条件解析类

FParseClass

nvarchar(500)

500

TRUE

 


T_WF_ConditionType(自定义条件类型):脚本代码

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

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

/*==============================================================*/
/* Table: T_WF_ConditionType */
/*==============================================================*/
create table T_WF_ConditionType (
FID int not null,
FNumber nvarchar(30) not null default ' ',
FCreatorId int not null default 0,
FCreateDate datetime not null default getdate(),
FModifierId int not null default 0,
FModifyDate datetime not null default getdate(),
FDocumentStatus char(1) not null default ' ',
FForbidStatus char(1) not null default ' ',
FObjectTypeId varchar(36) not null default ' ',
FParseClass nvarchar(500) not null default ' ',
constraint PK_WF_ConditionType primary key (FID)
)
go

/*==============================================================*/
/* Index: IDX_WF_ConditionType_Number */
/*==============================================================*/
create index IDX_WF_ConditionType_Number on T_WF_ConditionType (
FNumber ASC
)
go


T_WF_ConditionType(自定义条件类型):键值定义

名称

代码

主要的

PK_WF_ConditionType

PK_WF_ConditionType

TRUE


T_WF_ConditionType(自定义条件类型):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_WF_ConditionType_Number

IDX_WF_ConditionType_Number

FALSE

FALSE

FALSE

FALSE

FALSE

T_WF_ConditionType(自定义条件类型)