数据表:t_org_accountsystem_l(会计核算体系多语言)

t_org_accountsystem_l(会计核算体系多语言):描述

名称

t_org_accountsystem_l(会计核算体系多语言)

代码

T_ORG_ACCOUNTSYSTEM_L

注释

会计核算体系多语言

模型

BOS

主键

pk_org_accountsystem_l


t_org_accountsystem_l(会计核算体系多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

多语言内码

FPKID

int

 

TRUE

 

会计核算体系内码

FACCTSYSTEMID

int

 

TRUE

 

语言码

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(80)

80

TRUE

 

描述

FDESCRIPTION

nvarchar(255)

255

TRUE

 


t_org_accountsystem_l(会计核算体系多语言):脚本代码

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

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

/*==============================================================*/
/* Table: T_ORG_ACCOUNTSYSTEM_L */
/*==============================================================*/
create table T_ORG_ACCOUNTSYSTEM_L (
FPKID int not null default 0,
FACCTSYSTEMID int not null default 0,
FLOCALEID int not null default 0,
FNAME nvarchar(80) not null default '',
FDESCRIPTION nvarchar(255) not null default '',
constraint PK_ORG_ACCOUNTSYSTEM_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_ORG_ATSYS_L_FATSYSID */
/*==============================================================*/
create unique index IDX_ORG_ATSYS_L_FATSYSID on T_ORG_ACCOUNTSYSTEM_L (
FACCTSYSTEMID ASC,
FLOCALEID ASC
)
go


t_org_accountsystem_l(会计核算体系多语言):键值定义

名称

代码

主要的

pk_org_accountsystem_l

pk_org_accountsystem_l

TRUE


t_org_accountsystem_l(会计核算体系多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_ORG_ATSYS_L_FATSYSID

IDX_ORG_ATSYS_L_FATSYSID

TRUE

FALSE

FALSE

FALSE

FALSE

t_org_accountsystem_l(会计核算体系多语言)