审查视图

allied-creation-basic/schemas/dictionary.yaml 668 字节
tangxuhui authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
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