数据表:T_ASC_ScanPoint(扫描点)

T_ASC_ScanPoint(扫描点):描述

名称

T_ASC_ScanPoint(扫描点)

代码

T_ASC_ScanPoint

注释

扫描点

模型

BOS

主键

PK_ASC_ScanPoint


T_ASC_ScanPoint(扫描点):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FID

int

 

TRUE

 

编码

FNumber

nvarchar(30)

30

TRUE

 

唯一标识

FFlag

nvarchar(50)

50

TRUE

 

创建人

FCreatorId

int

 

TRUE

 

创建日期

FCreateDate

datetime

 

TRUE

 

修改人

FModifierId

int

 

TRUE

 

修改日期

FModifyDate

datetime

 

TRUE

 

数据状态

FDocumentStatus

char(1)

1

TRUE

 

禁用状态

FForbidStatus

char(1)

1

TRUE

 


T_ASC_ScanPoint(扫描点):脚本代码

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

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

/*==============================================================*/
/* Table: T_ASC_ScanPoint */
/*==============================================================*/
create table T_ASC_ScanPoint (
FID int not null,
FNumber nvarchar(30) not null default ' ',
FFlag nvarchar(50) not null default ' ',
FCreatorId int not null default 0,
FCreateDate datetime not null default getdate(),
FModifierId int not null default 0,
FModifyDate datetime not null default getdate(),
FDocumentStatus char(1) not null default ' ',
FForbidStatus char(1) not null default ' ',
constraint PK_ASC_ScanPoint primary key (FID)
)
go

/*==============================================================*/
/* Index: IDX_ASC_ScanPoint_Number */
/*==============================================================*/
create index IDX_ASC_ScanPoint_Number on T_ASC_ScanPoint (
FNumber ASC
)
go


T_ASC_ScanPoint(扫描点):键值定义

名称

代码

主要的

PK_ASC_ScanPoint

PK_ASC_ScanPoint

TRUE


T_ASC_ScanPoint(扫描点):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_ASC_ScanPoint_Number

IDX_ASC_ScanPoint_Number

FALSE

FALSE

FALSE

FALSE

FALSE

T_ASC_ScanPoint(扫描点)