数据表:T_ASC_InterfaceLog(接口调用日志)

T_ASC_InterfaceLog(接口调用日志):描述

名称

T_ASC_InterfaceLog(接口调用日志)

代码

T_ASC_InterfaceLog

注释

接口调用日志,包括调用影像系统、外部调用影像状态更新接口等

模型

BOS

主键

PK_ASC_InterfaceLog


T_ASC_InterfaceLog(接口调用日志):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FId

int

 

TRUE

 

创建时间

FCreateDate

datetime

 

TRUE

 

用户内码

FUserId

int

 

TRUE

 

是否成功

FIsSuccess

char(1)

1

TRUE

0-否、1-是

接口分组

FInterfaceGroup

smallint

 

TRUE

0-未知、1-调用影像系统接口、2-外部调用影像状态接口

接口标识

FInterfaceNumber

nvarchar(100)

100

TRUE

 

接口名称

FInterfaceName

nvarchar(100)

100

TRUE

 

传入参数

FInArg

nvarchar(2000)

2000

FALSE

 

传出参数

FOutArg

nvarchar(2000)

2000

FALSE

 

异常信息

FException

nvarchar(2000)

2000

FALSE

 


T_ASC_InterfaceLog(接口调用日志):脚本代码

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

/*==============================================================*/
/* Table: T_ASC_InterfaceLog */
/*==============================================================*/
create table T_ASC_InterfaceLog (
FId int not null default 0,
FCreateDate datetime not null default getdate(),
FUserId int not null default 0,
FIsSuccess char(1) not null default '0',
FInterfaceGroup smallint not null default 0,
FInterfaceNumber nvarchar(100) not null default '',
FInterfaceName nvarchar(100) not null default '',
FInArg nvarchar(2000) null,
FOutArg nvarchar(2000) null,
FException nvarchar(2000) null,
constraint PK_ASC_InterfaceLog primary key (FId)
)
go


T_ASC_InterfaceLog(接口调用日志):键值定义

名称

代码

主要的

PK_ASC_InterfaceLog

PK_ASC_InterfaceLog

TRUE