数据表:T_SEC_SIMPLEPASSPORT_S(SHR登录配置)

T_SEC_SIMPLEPASSPORT_S(SHR登录配置):描述

名称

T_SEC_SIMPLEPASSPORT_S(SHR登录配置)

代码

T_SEC_SIMPLEPASSPORT_S

注释

 

模型

BOS

主键

PK_SEC_SIMPLEPASSPORT_S


T_SEC_SIMPLEPASSPORT_S(SHR登录配置):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FID

int

 

TRUE

 

用户

FUSERID

int

 

TRUE

 

s-HR接口地址

FSHTURL

nvarchar(255)

255

TRUE

 

SHR用户

FSHRUSER

nvarchar(255)

255

TRUE

 

强制同步

FSYNCBYFORCE

char(1)

1

TRUE

 

强制同步条数

FSYNCCOUNT

int

 

TRUE

 

同步线程数

FTHREADCOUNT

int

 

TRUE

 

删除数量

FDELETECOUNT

int

 

TRUE

 

s-HR密钥

FSHRSECRET

nvarchar(255)

255

TRUE

 

s-HR失效时间

FSHRTIME

int

 

TRUE

 

异常消息接收人

FMESSAGEACCEPTOR

int

 

TRUE

 


T_SEC_SIMPLEPASSPORT_S(SHR登录配置):脚本代码

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

/*==============================================================*/
/* Table: T_SEC_SIMPLEPASSPORT_S */
/*==============================================================*/
create table T_SEC_SIMPLEPASSPORT_S (
FID int not null default 0,
FUSERID int not null default 0,
FSHTURL nvarchar(255) not null default ' ',
FSHRUSER nvarchar(255) not null default ' ',
FSYNCBYFORCE char(1) not null default '0',
FSYNCCOUNT int not null default 100,
FTHREADCOUNT int not null default 1,
FDELETECOUNT int not null default 100000,
FSHRSECRET nvarchar(255) not null default ' ',
FSHRTIME int not null default 40,
FMESSAGEACCEPTOR int not null default 0,
constraint PK_SEC_SIMPLEPASSPORT_S primary key (FID)
)
go


T_SEC_SIMPLEPASSPORT_S(SHR登录配置):键值定义

名称

代码

主要的

PK_SEC_SIMPLEPASSPORT_S

PK_SEC_SIMPLEPASSPORT_S

TRUE