数据表:T_BAS_BILLMAP_L (单据映射)

T_BAS_BILLMAP_L (单据映射):描述

名称

T_BAS_BILLMAP_L (单据映射)

代码

T_BAS_BILLMAP_L

注释

 

模型

BOS

主键

PK_BAS_BILLMAP_L


T_BAS_BILLMAP_L (单据映射):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FPKID

int

 

TRUE

 

单据映射内码

FID

int

 

TRUE

 

语言类型内码

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(80)

80

FALSE

 

源基础资料

FSOURCEBILLALL

nvarchar(255)

255

FALSE

 


T_BAS_BILLMAP_L (单据映射):脚本代码

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

/*==============================================================*/
/* Table: T_BAS_BILLMAP_L */
/*==============================================================*/
create table T_BAS_BILLMAP_L (
FPKID int not null default 0,
FID int not null default 0,
FLOCALEID int not null default 0,
FNAME nvarchar(80) null default '',
FSOURCEBILLALL nvarchar(255) null,
constraint PK_BAS_BILLMAP_L primary key (FPKID)
)
go


T_BAS_BILLMAP_L (单据映射):键值定义

名称

代码

主要的

PK_BAS_BILLMAP_L

PK_BAS_BILLMAP_L

TRUE