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

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

名称

T_MOB_PrintFormatColEntry(移动打印格式模板-Col分录)

代码

T_MOB_PrintFormatColEntry

注释

 

模型

BOS

主键

PK_MOB_PrintFormatColEntry


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

名称

代码

数据类型

长度

强制

注释

分录内码

FENTRYID

int

 

TRUE

 

内码

FID

int

 

TRUE

 

列序号

FCOLSEQ

int

 

FALSE

 

最大字数

FCOLMAXCOUNT

int

 

FALSE

 

对齐方式

FCOLTEXTALIGNMENT

char(1)

1

FALSE

 

自动折行

FCOLSPLITLINE

char(1)

1

FALSE

 


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

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

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

/*==============================================================*/
/* Table: T_MOB_PrintFormatColEntry */
/*==============================================================*/
create table T_MOB_PrintFormatColEntry (
FENTRYID int not null,
FID int not null default 0,
FCOLSEQ int null,
FCOLMAXCOUNT int null,
FCOLTEXTALIGNMENT char(1) null,
FCOLSPLITLINE char(1) null,
constraint PK_T_MOB_PRINTFORMATCOLENTRY primary key (FENTRYID)
)
go

/*==============================================================*/
/* Index: IDX_MOB_PrintFormatColEntry */
/*==============================================================*/
create index IDX_MOB_PrintFormatColEntry on T_MOB_PrintFormatColEntry (
FID ASC
)
go


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

名称

代码

主要的

PK_MOB_PrintFormatColEntry

PK_MOB_PrintFormatColEntry

TRUE


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

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_MOB_PrintFormatColEntry

IDX_MOB_PrintFormatColEntry

FALSE

FALSE

FALSE

FALSE

FALSE

T_MOB_PrintFormatColEntry(移动打印格式模板-Col分录)