数据表:T_WF_TEMPLATEPOST(流程岗位维度权限)

T_WF_TEMPLATEPOST(流程岗位维度权限):描述

名称

T_WF_TEMPLATEPOST(流程岗位维度权限)

代码

T_WF_TEMPLATEPOST

注释

 

模型

BOS

主键

Key_wf_templatepost


T_WF_TEMPLATEPOST(流程岗位维度权限):列规格定义

名称

代码

数据类型

长度

强制

注释

流程岗位维度Id

FTmpPosetId

int

 

TRUE

 

流程模板Id

FTmpId

int

 

FALSE

 

岗位Id

FPostId

int

 

TRUE

 


T_WF_TEMPLATEPOST(流程岗位维度权限):脚本代码

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

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

/*==============================================================*/
/* Table: T_WF_TEMPLATEPOST */
/*==============================================================*/
create table T_WF_TEMPLATEPOST (
FTmpPosetId int not null default 0,
FTmpId int null,
FPostId int not null default 0,
constraint PK_WF_TEMPLATEPOST primary key (FTmpPosetId)
)
go

/*==============================================================*/
/* Index: IDX__WF_TEMPLATEPOST_TMPID */
/*==============================================================*/
create index IDX__WF_TEMPLATEPOST_TMPID on T_WF_TEMPLATEPOST (
FTmpId ASC
)
go


T_WF_TEMPLATEPOST(流程岗位维度权限):键值定义

名称

代码

主要的

Key_wf_templatepost

Key_wf_templatepost

TRUE


T_WF_TEMPLATEPOST(流程岗位维度权限):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX__WF_TEMPLATEPOST_TMPID

IDX__WF_TEMPLATEPOST_TMPID

FALSE

FALSE

FALSE

FALSE

FALSE

T_WF_TEMPLATEPOST(流程岗位维度权限)