子系统:3.基础服务与基础框架

数据表:T_BAS_ALLOCATCYCLE_L (分配周期多语言)

T_BAS_ALLOCATCYCLE_L (分配周期多语言):描述

名称

T_BAS_ALLOCATCYCLE_L (分配周期多语言)

代码

T_BAS_ALLOCATECYCLE_L

注释

 

模型

BOS

主键

PK_BAS_ALLOCATECYCLE_L


T_BAS_ALLOCATCYCLE_L (分配周期多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FPKID

int

 

TRUE

 

基础资料映射内码

FID

int

 

TRUE

 

语言类型内码

FLOCALEID

int

 

TRUE

 

执行周期说明

FWARNINFO

nvarchar(255)

255

FALSE

 


T_BAS_ALLOCATCYCLE_L (分配周期多语言):脚本代码

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

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

/*==============================================================*/
/* Table: T_BAS_ALLOCATECYCLE_L */
/*==============================================================*/
create table T_BAS_ALLOCATECYCLE_L (
FPKID int not null default 0,
FID int not null default 0,
FLOCALEID int not null default 2052,
FWARNINFO nvarchar(255) null default ' ',
constraint PK_ALLOCATECYCLE_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IND_BAS_ALLOCATECYCLE_L */
/*==============================================================*/
create index IND_BAS_ALLOCATECYCLE_L on T_BAS_ALLOCATECYCLE_L (
FPKID ASC,
FLOCALEID ASC
)
go


T_BAS_ALLOCATCYCLE_L (分配周期多语言):键值定义

名称

代码

主要的

PK_BAS_ALLOCATECYCLE_L

PK_BAS_ALLOCATECYCLE_L

TRUE


T_BAS_ALLOCATCYCLE_L (分配周期多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IND_BAS_ALLOCATECYCLE_L

IND_BAS_ALLOCATECYCLE_L

FALSE

FALSE

FALSE

FALSE

FALSE

T_BAS_ALLOCATCYCLE_L (分配周期多语言)