数据表:T_BAS_QUICKVIEWSCHEME(快速查看方案)

T_BAS_QUICKVIEWSCHEME(快速查看方案):描述

名称

T_BAS_QUICKVIEWSCHEME(快速查看方案)

代码

T_BAS_QUICKVIEWSCHEME

注释

 

模型

BOS

主键

PK_BAS_QUICKVIEWSCHEME_FID


T_BAS_QUICKVIEWSCHEME(快速查看方案):列规格定义

名称

代码

数据类型

长度

强制

注释

FID

FID

int

 

TRUE

 

FFormId

FFormId

varchar(36)

36

TRUE

 

FSchemeId

FSchemeId

varchar(36)

36

TRUE

 

FUserId

FUserId

int

 

TRUE

 

FSeq

FSeq

int

 

TRUE

 

FISH5DataCard

FISH5DataCard

char(1)

1

FALSE

 


T_BAS_QUICKVIEWSCHEME(快速查看方案):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_QUICKVIEWSCHEME */
/*==============================================================*/
create table T_BAS_QUICKVIEWSCHEME (
FID int not null default 0,
FFormId varchar(36) not null,
FSchemeId varchar(36) not null,
FUserId int not null default 0,
FSeq int not null default 0,
FISH5DataCard char(1) null,
constraint PK_BAS_QUICKVIEWSCHEME_FID primary key (FID)
)
go


T_BAS_QUICKVIEWSCHEME(快速查看方案):键值定义

名称

代码

主要的

PK_BAS_QUICKVIEWSCHEME_FID

PK_BAS_QUICKVIEWSCHEME_FID

TRUE