数据表:T_BAS_BROADCASTMSG(广播消息)

T_BAS_BROADCASTMSG(广播消息):描述

名称

T_BAS_BROADCASTMSG(广播消息)

代码

T_BAS_BROADCASTMSG

注释

 

模型

BOS

主键

PK_BAS_BROADCASTMSG


T_BAS_BROADCASTMSG(广播消息):列规格定义

名称

代码

数据类型

长度

强制

注释

FID

FID

bigint

 

TRUE

 

失效时间

FFailureTime

datetime

 

TRUE

 

是否发送轻应用消息

FIsSendMobileMsg

char(1)

1

TRUE

 

轻应用公众号

FMobilePubAcctount

bigint

 

FALSE

 

创建人

FCREATORID

int

 

FALSE

 

创建日期

FCREATEDATE

datetime

 

FALSE

 

是否发送云短信

FISSENDKINGDEESMS

char(1)

1

FALSE

 


T_BAS_BROADCASTMSG(广播消息):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_BROADCASTMSG */
/*==============================================================*/
create table T_BAS_BROADCASTMSG (
FID bigint not null,
FFailureTime datetime not null,
FIsSendMobileMsg char(1) not null default '0',
FMobilePubAcctount bigint null,
FCREATORID int null,
FCREATEDATE datetime null,
FISSENDKINGDEESMS char(1) null default '0',
constraint PK_BAS_BROADCASTMSG primary key (FID)
)
go


T_BAS_BROADCASTMSG(广播消息):键值定义

名称

代码

主要的

PK_BAS_BROADCASTMSG

PK_BAS_BROADCASTMSG

TRUE