数据表:t_meta_topclass(子系统分组)

t_meta_topclass(子系统分组):描述

名称

t_meta_topclass(子系统分组)

代码

T_META_TOPCLASS

注释

 

模型

BOS

主键

pk_meta_topclass


t_meta_topclass(子系统分组):列规格定义

名称

代码

数据类型

长度

强制

注释

子系统分组编码

FTOPCLASSID

varchar(36)

36

TRUE

 

顺序

FSEQ

int

 

TRUE

 

可见性

FVISIBLE

int

 

TRUE

1   单据头可见
3   全部场景可见
2   单据体可见
0   不可见

是否默认分组

FISDEFAULT

int

 

TRUE

 


t_meta_topclass(子系统分组):脚本代码

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

/*==============================================================*/
/* Table: T_META_TOPCLASS */
/*==============================================================*/
create table T_META_TOPCLASS (
FTOPCLASSID varchar(36) not null default '',
FSEQ int not null default 0,
FVISIBLE int not null default 0,
FISDEFAULT int not null default 0,
constraint pk_meta_topclass primary key (FTOPCLASSID)
)
go


t_meta_topclass(子系统分组):键值定义

名称

代码

主要的

pk_meta_topclass

pk_meta_topclass

TRUE