数据表:T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录)

T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录):描述

名称

T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录)

代码

T_MOB_PrintFormatHFEntry

注释

 

模型

BOS

主键

PK_MOB_PrintFormatHFEntry


T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录):列规格定义

名称

代码

数据类型

长度

强制

注释

分录内码

FENTRYID

int

 

TRUE

 

内码

FID

int

 

TRUE

 

序号

FHFSEQ

int

 

FALSE

 

类型

FHFTYPE

char(1)

1

FALSE

 

文本值

FHFVALUE

nvarchar(512)

512

FALSE

 

对齐方式

FHFTEXTALIGNMENT

char(1)

1

FALSE

 

反白

FHFANTIWHITE

char(1)

1

FALSE

 

倍宽

FHFDOUBLEWIDTH

char(1)

1

FALSE

 

倍高

FHFDOUBLEHEIGHT

char(1)

1

FALSE

 

下划线

FHFUNDERLINE

char(1)

1

FALSE

 

小字体

FHFMINFONT

char(1)

1

FALSE

 

自动折行

FHFSPLITLINE

char(1)

1

FALSE

 


T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录):脚本代码

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

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

/*==============================================================*/
/* Table: T_MOB_PrintFormatHFEntry */
/*==============================================================*/
create table T_MOB_PrintFormatHFEntry (
FENTRYID int not null,
FID int not null default 0,
FHFSEQ int null,
FHFTYPE char(1) null,
FHFVALUE nvarchar(512) null,
FHFTEXTALIGNMENT char(1) null,
FHFANTIWHITE char(1) null,
FHFDOUBLEWIDTH char(1) null,
FHFDOUBLEHEIGHT char(1) null,
FHFUNDERLINE char(1) null,
FHFMINFONT char(1) null,
FHFSPLITLINE char(1) null,
constraint PK_T_MOB_PRINTFORMATHFENTRY primary key (FENTRYID)
)
go

/*==============================================================*/
/* Index: IDX_MOB_PrintFormatHFEntry */
/*==============================================================*/
create index IDX_MOB_PrintFormatHFEntry on T_MOB_PrintFormatHFEntry (
FID ASC
)
go


T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录):键值定义

名称

代码

主要的

PK_MOB_PrintFormatHFEntry

PK_MOB_PrintFormatHFEntry

TRUE


T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_MOB_PrintFormatHFEntry

IDX_MOB_PrintFormatHFEntry

FALSE

FALSE

FALSE

FALSE

FALSE

T_MOB_PrintFormatHFEntry(移动打印格式模板-HF分录)