数据表:T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计)

T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计):描述

名称

T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计)

代码

T_BAS_ONLINEACTIONSTATISTIC

注释

 

模型

BOS

主键

PK_BAS_ONLINEACTIONSTATISTIC


T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FID

int

 

TRUE

 

功能

FACTIONTYPE

int

 

TRUE

OnlineService = 1,
OnlineExperience = 2,
KingdeeClub = 3,

统计时间

FSTCDATE

varchar(8)

8

TRUE

 


T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_ONLINEACTIONSTATISTIC */
/*==============================================================*/
create table T_BAS_ONLINEACTIONSTATISTIC (
FID int not null default 0,
FACTIONTYPE int not null default 0,
FSTCDATE varchar(8) not null default ' ',
constraint PK_BAS_ONLINEACTIONSTATISTIC primary key (FID)
)
go


T_BAS_ONLINEACTIONSTATISTIC(在线功能使用情况统计):键值定义

名称

代码

主要的

PK_BAS_ONLINEACTIONSTATISTIC

PK_BAS_ONLINEACTIONSTATISTIC

TRUE