数据表:t_BAS_ScheduleMsgConfig(执行计划消息配置表)

t_BAS_ScheduleMsgConfig(执行计划消息配置表):描述

名称

t_BAS_ScheduleMsgConfig(执行计划消息配置表)

代码

t_BAS_ScheduleMsgConfig

注释

 

模型

BOS

主键

Key_1


t_BAS_ScheduleMsgConfig(执行计划消息配置表):列规格定义

名称

代码

数据类型

长度

强制

注释

消息配置内码

FMsgConfigId

varchar(36)

36

TRUE

 

执行计划类型内码

FScheduleTypeId

varchar(36)

36

TRUE

 

接收人

FMsgReceiver

int

 

TRUE

 

消息类型

FMsgTypes

varchar(100)

100

FALSE

枚举类型 1. 成功时消息 2. 异常时消息 3. 未执行时消息

创建人

FCreatorId

int

 

FALSE

 

创建时间

FCreateDate

DateTime

 

FALSE

 


t_BAS_ScheduleMsgConfig(执行计划消息配置表):脚本代码

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

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

/*==============================================================*/
/* Table: t_BAS_ScheduleMsgConfig */
/*==============================================================*/
create table t_BAS_ScheduleMsgConfig (
FMsgConfigId varchar(36) not null default ' ',
FScheduleTypeId varchar(36) not null,
FMsgReceiver int not null,
FMsgTypes varchar(100) null,
FCreatorId int null,
FCreateDate DateTime null,
constraint PK_T_BAS_SCHEDULEMSGCONFIG primary key (FMsgConfigId)
)
go

/*==============================================================*/
/* Index: IDX_BAS_Receiver */
/*==============================================================*/
create index IDX_BAS_Receiver on t_BAS_ScheduleMsgConfig (
FMsgReceiver ASC
)
go


t_BAS_ScheduleMsgConfig(执行计划消息配置表):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE


t_BAS_ScheduleMsgConfig(执行计划消息配置表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BAS_Receiver

IDX_BAS_Receiver

FALSE

FALSE

FALSE

FALSE

FALSE

t_BAS_ScheduleMsgConfig(执行计划消息配置表)