数据表:T_BOS_BIZTIPS_ENTRY(业务提示语明细)

T_BOS_BIZTIPS_ENTRY(业务提示语明细):描述

名称

T_BOS_BIZTIPS_ENTRY(业务提示语明细)

代码

T_BOS_BIZTIPS_ENTRY

注释

 

模型

BOS

主键

PK_BIZTIPS_ENTRY


T_BOS_BIZTIPS_ENTRY(业务提示语明细):列规格定义

名称

代码

数据类型

长度

强制

注释

明细主键

FEntryID

varchar(36)

36

TRUE

 

业务主键

FID

varchar(36)

36

FALSE

 

提示级别

FTIPSLEVEL

int

 

FALSE

 


T_BOS_BIZTIPS_ENTRY(业务提示语明细):脚本代码

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

/*==============================================================*/
/* Table: T_BOS_BIZTIPS_ENTRY */
/*==============================================================*/
create table T_BOS_BIZTIPS_ENTRY (
FEntryID varchar(36) not null default '',
FID varchar(36) null default '',
FTIPSLEVEL int null default 0,
constraint PK_T_BOS_BIZTIPS_ENTRY primary key (FEntryID)
)
go


T_BOS_BIZTIPS_ENTRY(业务提示语明细):键值定义

名称

代码

主要的

PK_BIZTIPS_ENTRY

PK_BIZTIPS_ENTRY

TRUE