数据表:t_wf_prclaunchconfig(流程模板配置明细)

t_wf_prclaunchconfig(流程模板配置明细):描述

名称

t_wf_prclaunchconfig(流程模板配置明细)

代码

t_wf_prclaunchconfig

注释

 

模型

BOS

主键

pk_wf_prclaunchconfig


t_wf_prclaunchconfig(流程模板配置明细):列规格定义

名称

代码

数据类型

长度

强制

注释

模板ID

ftmpid

int

 

FALSE

 

配置ID

ftmpdetailid

int

 

TRUE

 

默认启动流程标识

fdefaultprc

char(1)

1

FALSE

 

流程ID

FPROCDEFID

varchar(36)

36

FALSE

 

流程版本ID

FVERSIONID

varchar(36)

36

FALSE

 

启动条件

flaunchvalue

ntext

 

FALSE

 

启动过滤条件

FLAUNCHFILTER

ntext

 

FALSE

过滤表格生成的json格式表达式

启动表达式条件

FLAUNCHCONDITION

varchar(500)

500

FALSE

自定义表达式生成的公式

禁用

FROWFORBID

char(1)

1

TRUE

'A':启用
'B':禁用


t_wf_prclaunchconfig(流程模板配置明细):脚本代码

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

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

/*==============================================================*/
/* Table: t_wf_prclaunchconfig */
/*==============================================================*/
create table t_wf_prclaunchconfig (
ftmpid int null,
ftmpdetailid int not null default 0,
fdefaultprc char(1) null,
FPROCDEFID varchar(36) null,
FVERSIONID varchar(36) null,
flaunchvalue ntext null,
FLAUNCHFILTER ntext null,
FLAUNCHCONDITION varchar(500) null,
FROWFORBID char(1) not null default 'A',
constraint PK_WF_PRCLAUNCHCONFIG primary key (ftmpdetailid)
)
go

/*==============================================================*/
/* Index: idx_wf_launch_ftmpdetailid */
/*==============================================================*/
create index idx_wf_launch_ftmpdetailid on t_wf_prclaunchconfig (
ftmpid ASC
)
go


t_wf_prclaunchconfig(流程模板配置明细):键值定义

名称

代码

主要的

pk_wf_prclaunchconfig

pk_wf_prclaunchconfig

TRUE


t_wf_prclaunchconfig(流程模板配置明细):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_launch_ftmpdetailid

idx_wf_launch_ftmpdetailid

FALSE

FALSE

FALSE

FALSE

FALSE

t_wf_prclaunchconfig(流程模板配置明细)