作者 yangfu

add dict

... ... @@ -2,6 +2,6 @@ version: v1
kind: Attribute
metadata:
name: usersType
description: 用户类型 : 1:普通用户 2:共创用户
description: 用户类型 : 1:普通用户 2:共创用户 1024:超级管理员
type:
primitive: int
... ...
version: v1
kind: Schema
metadata:
name: companyCustomer
name: companyCustomer (停用)
description: 客户信息 (base)
attributes:
- ref: companyCustomerId
... ...
version: v1
kind: Schema
metadata:
name: companyProduct
name: companyProduct (停用)
description: 产品信息 (base)
attributes:
- ref: companyProductId
... ...
version: v1
kind: Schema
metadata:
name: companyRegion
name: companyRegion (停用)
description: 公司区域 (base)
attributes:
- ref: companyRegionId
... ...
version: v1
kind: Schema
metadata:
name: dictionary
description: 字典
attributes:
- name: dictionaryId
description: 字典编号 主键
type:
primitive: int
- name: dictCode
description: 字典编码
type:
primitive: string
- name: dictName
description: 字典名称
type:
primitive: string
- name: enableStatus
description: 启用状态(启用:1 禁用:2)
type:
primitive: int
- name: desc
description: 备注信息
type:
primitive: string
- name: dictItems
description: 字典值列表
type:
array: dictionaryItem
... ...
version: v1
kind: Schema
metadata:
name: dictionaryItem
description: 字典明细项
attributes:
- name: itemCode
description: 项编码
type:
primitive: string
- name: itemLable
description: 项标签
type:
primitive: string
- name: itemValue
description:
type:
primitive: string
- name: enableStatus
description: 启用状态(启用:1 禁用:2)
type:
primitive: string
- name: sort
description: 显示序号
type:
primitive: int
... ...
... ... @@ -45,6 +45,10 @@ metadata:
type:
primitive: string
- name: isPublish
description: 状态是否是公开的菜单,[0:隐藏],[1:显示],默认显示
description: 菜单是否公开状态,[0:隐藏],[1:显示],默认显示
type:
primitive: int
- name: isSystem
description: 菜单是否是系统级,[0:否],[1:是],默认否
type:
primitive: int
... ...