数据表:T_MOB_PrintFormat(移动打印格式模板)

T_MOB_PrintFormat(移动打印格式模板):描述

名称

T_MOB_PrintFormat(移动打印格式模板)

代码

T_MOB_PrintFormat

注释

 

模型

BOS

主键

PK_MOB_PrintFormat


T_MOB_PrintFormat(移动打印格式模板):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FID

int

 

TRUE

 

分配内码

FMASTERID

int

 

FALSE

 

编码

FNUMBER

nvarchar(80)

80

TRUE

 

创建组织

FCREATEORGID

int

 

TRUE

 

使用组织

FUSEORGID

int

 

TRUE

 

创建人

FCREATORID

int

 

TRUE

 

创建日期

FCREATEDATE

datetime

 

FALSE

 

修改人

FMODIFIERID

int

 

FALSE

 

修改日期

FMODIFYDATE

datetime

 

FALSE

 

数据状态

FDOCUMENTSTATUS

char(1)

1

TRUE

 

禁用状态

FFORBIDSTATUS

char(1)

1

TRUE

 

审核人

FAPPROVERID

int

 

FALSE

 

审核日期

FAPPROVEDATE

datetime

 

FALSE

 

禁用人

FFORBIDDERID

int

 

FALSE

 

禁用日期

FFORBIDDATE

datetime

 

FALSE

 

对齐方式

FTEXTALIGNMENT

char(1)

1

FALSE

 

反白

FANTIWHITE

char(1)

1

FALSE

 

倍宽

FDOUBLEWIDTH

char(1)

1

FALSE

 

倍高

FDOUBLEHEIGHT

char(1)

1

FALSE

 

下划线

FUNDERLINE

char(1)

1

FALSE

 

小字体

FMINFONT

char(1)

1

FALSE

 

自动折行

FSPLITLINE

char(1)

1

FALSE

 


T_MOB_PrintFormat(移动打印格式模板):脚本代码

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

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

/*==============================================================*/
/* Table: T_MOB_PrintFormat */
/*==============================================================*/
create table T_MOB_PrintFormat (
FID int not null,
FMASTERID int null,
FNUMBER nvarchar(80) not null default '',
FCREATEORGID int not null default 0,
FUSEORGID int not null default 0,
FCREATORID int not null default 0,
FCREATEDATE datetime null,
FMODIFIERID int null default 0,
FMODIFYDATE datetime null,
FDOCUMENTSTATUS char(1) not null default '',
FFORBIDSTATUS char(1) not null default '',
FAPPROVERID int null default 0,
FAPPROVEDATE datetime null,
FFORBIDDERID int null default 0,
FFORBIDDATE datetime null,
FTEXTALIGNMENT char(1) null,
FANTIWHITE char(1) null,
FDOUBLEWIDTH char(1) null,
FDOUBLEHEIGHT char(1) null,
FUNDERLINE char(1) null,
FMINFONT char(1) null,
FSPLITLINE char(1) null,
constraint PK_T_MOB_PRINTFORMAT primary key (FID)
)
go

/*==============================================================*/
/* Index: IDX_T_MOB_PrintFormat */
/*==============================================================*/
create index IDX_T_MOB_PrintFormat on T_MOB_PrintFormat (
FNUMBER ASC,
FUSEORGID ASC
)
go


T_MOB_PrintFormat(移动打印格式模板):键值定义

名称

代码

主要的

PK_MOB_PrintFormat

PK_MOB_PrintFormat

TRUE


T_MOB_PrintFormat(移动打印格式模板):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_T_MOB_PrintFormat

IDX_T_MOB_PrintFormat

FALSE

FALSE

FALSE

FALSE

FALSE

T_MOB_PrintFormat(移动打印格式模板)