审查视图

allied-creation-basic/schemas/noticePersonal.yaml 1015 字节
tangxuhui authored
1 2 3
version: v1
kind: Schema
metadata:
tangxuhui authored
4
  name: noticePersonal
tangxuhui authored
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
  description: 个人的消息通知
  attributes:
    - name: id
      description: 编号id
      type:
        primitive: int64
    - name: createdTime
      description: 创建时间
      type:
        primitive: datatime
    - name: updatedTime
      description: 更新的时间
      type:
        primitive: datatime
    - name: content
      description: 消息的内容
      type:
        platform: string
    - name: extend
      description: 发送通知时的扩展参数
      type:
        primitive: string
tangxuhui authored
27 28 29 30 31 32
    - name: msgType
      description: 消息类型(0普通消息、1天联模块消息)
      type:
        primitive: int
    - name: module
      description: 消息对应的业务模块
tangxuhui authored
33 34 35 36 37 38 39 40
      type:
        primitive: string
    - name: userId
      description: 用户id
      type:
        primitive: int64
    - name: isRead
      description: 是否已读【1:未读】【2:已读】
tangxuhui authored
41 42
      type:
        primitive: int