数据表:T_BAS_H5USERLAYOUT(H5卡片式布局)

T_BAS_H5USERLAYOUT(H5卡片式布局):描述

名称

T_BAS_H5USERLAYOUT(H5卡片式布局)

代码

T_BAS_H5USERLAYOUT

注释

 

模型

BOS

主键

PK_BAS_H5USERLAYOUT


T_BAS_H5USERLAYOUT(H5卡片式布局):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FID

int

 

TRUE

 

用户ID

FUSERID

int

 

TRUE

 

布局编码

FLAYOUTNO

varchar(100)

100

TRUE

 

布局类型

FLAYOUTTYPE

char(1)

1

TRUE

0:扩展 1:内置

(布局版本)FVERSION

FVERSION

nvarchar(10)

10

FALSE

 


T_BAS_H5USERLAYOUT(H5卡片式布局):脚本代码

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

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

/*==============================================================*/
/* Table: T_BAS_H5USERLAYOUT */
/*==============================================================*/
create table T_BAS_H5USERLAYOUT (
FID int not null default 0,
FUSERID int not null default 0,
FLAYOUTNO varchar(100) not null default ' ',
FLAYOUTTYPE char(1) not null default '0',
FVERSION nvarchar(10) null default ' ',
constraint PK_BAS_H5USERLAYOUT primary key (FID)
)
go

/*==============================================================*/
/* Index: IDX_BAS_H5USERLAYOUT */
/*==============================================================*/
create index IDX_BAS_H5USERLAYOUT on T_BAS_H5USERLAYOUT (
FUSERID ASC
)
go


T_BAS_H5USERLAYOUT(H5卡片式布局):键值定义

名称

代码

主要的

PK_BAS_H5USERLAYOUT

PK_BAS_H5USERLAYOUT

TRUE


T_BAS_H5USERLAYOUT(H5卡片式布局):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BAS_H5USERLAYOUT

IDX_BAS_H5USERLAYOUT

FALSE

FALSE

FALSE

FALSE

FALSE

T_BAS_H5USERLAYOUT(H5卡片式布局)