数据表:T_BAS_USERLOGINTOP(用户每日登陆最早TOP)

T_BAS_USERLOGINTOP(用户每日登陆最早TOP):描述

名称

T_BAS_USERLOGINTOP(用户每日登陆最早TOP)

代码

T_BAS_USERLOGINTOP

注释

 

模型

BOS

主键

PK_BAS_USERLOGINTOP


T_BAS_USERLOGINTOP(用户每日登陆最早TOP):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FID

bigint

 

TRUE

 

登陆时间

FLOGINTIME

datetime

 

TRUE

 

用户Id

FUSERID

bigint

 

TRUE

 


T_BAS_USERLOGINTOP(用户每日登陆最早TOP):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_USERLOGINTOP */
/*==============================================================*/
create table T_BAS_USERLOGINTOP (
FID bigint not null default 0,
FLOGINTIME datetime not null default getdate(),
FUSERID bigint not null default 0,
constraint PK_BAS_USERLOGINTOP primary key (FID)
)
go


T_BAS_USERLOGINTOP(用户每日登陆最早TOP):键值定义

名称

代码

主要的

PK_BAS_USERLOGINTOP

PK_BAS_USERLOGINTOP

TRUE