Skip to content

operations 扩展资料表

字段名字段类型字段注释默认值可空备注
idint UNSIGNED主键 IDNO自动递增
typetinyint UNSIGNED类型1NO1.自定义 / 2.互动按钮图 / 3.勋章图标 / 4.提示文案
codevarchar(32)代码NO纯小写英文
stylevarchar(32)风格NOprimary / secondary / success / danger / warning / info
namevarchar(128)名称YES多语言
descriptiontext描述YES多语言
image_file_idbigint UNSIGNED图片文件 IDYES关联字段 files->id
image_file_urlvarchar(255)图片文件 URLYES
image_active_file_idbigint UNSIGNED二态图文件 IDYES关联字段 files->id
image_active_file_urlvarchar(255)二态图文件 URLYES
display_typetinyint UNSIGNED展示类型1NO1.基础 / 2.功能(插件)
plugin_fskeyvarchar(64)关联插件NO关联字段 plugins->fskey
哪个插件创建的,也是功能用途的插件页
is_enabledtinyint UNSIGNED是否有效1NO0.无效 / 1.有效
created_attimestamp创建时间CURRENT_TIMESTAMPNO
updated_attimestamp更新时间YES
deleted_attimestamp删除时间YES

code 用途编码

  • 1 自定义 customizes
  • 2 互动按钮图 buttonIcons
    • like 点赞图标
    • dislike 点踩图标
    • follow 关注图标
    • block 屏蔽图标
    • comment 评论图标
    • share 分享图标
    • more 更多图标
  • 3 个性装饰图 diversifyImages
    • title 标题图
      • 用户: 例如「联名」「小店」「徽章」等图标或功能图标
      • 小组: 例如「开发者入驻」
      • 话题: 例如「趋势」
      • 帖子: 例如「投票」「抽奖」「商品」等标注帖子内容的图标
      • 评论: 例如「神评」「优质评价」「热评」
    • decorate 挂件图
      • 用户: 头像挂件
      • 小组: 封面图挂件
      • 话题: 封面图挂件
      • 帖子: 角标挂件
      • 评论: 角标挂件
    • verified 认证图
      • 用户: 身份认证
      • 小组: 官方认证
      • 话题: 认证话题
      • 帖子: 内容证实
      • 评论: 内容证实
    • medal 勋章图
      • 用户: 例如「徽章」
      • 小组:
      • 话题:
      • 帖子: 例如「专业」
      • 评论:
  • 4 提示文案 tips
    • alert 提示文本

除以上系统内置定义外,插件可自行定义,用户支持关联多个,用途编码可供客户端区分用途和显示位置。

接口输出示例

json
{
    "operations": {
        "customizes": [
            {
                "code": "operations->code",
                "style": "operations->style",
                "name": "operations->name",
                "description": "operations->description",
                "imageUrl": "operations->image_file_id 或 image_file_url",
                "imageActiveUrl": "operations->image_active_file_id 或 image_active_file_url",
                "displayType": "operations->display_type",
                "pluginUrl": "operations->plugin_fskey",
            }
        ],
        "buttonIcons": [
            {
                "code": "operations->code",
                "style": "operations->style",
                "name": "operations->name",
                "description": "operations->description",
                "imageUrl": "operations->image_file_id 或 image_file_url",
                "imageActiveUrl": "operations->image_active_file_id 或 image_active_file_url",
                "displayType": "operations->display_type",
                "pluginUrl": "operations->plugin_fskey",
            }
        ],
        "diversifyImages": [
            {
                "code": "operations->code",
                "style": "operations->style",
                "name": "operations->name",
                "description": "operations->description",
                "imageUrl": "operations->image_file_id 或 image_file_url",
                "imageActiveUrl": "operations->image_active_file_id 或 image_active_file_url",
                "displayType": "operations->display_type",
                "pluginUrl": "operations->plugin_fskey",
            }
        ],
        "tips": [
            {
                "code": "operations->code",
                "style": "operations->style",
                "name": "operations->name",
                "description": "operations->description",
                "imageUrl": "operations->image_file_id 或 image_file_url",
                "imageActiveUrl": "operations->image_active_file_id 或 image_active_file_url",
                "displayType": "operations->display_type",
                "pluginUrl": "operations->plugin_fskey",
            }
        ],
    }
}

Released under the Apache-2.0 License