pipeline-bidding/models/bid_scoring_items.json
yumoqing 19a3d67c68 feat: 投标产线模块(bidding_general)
- 12张 bid_* 表(models+DDL+CRUD):招标信息/邮箱配置/人员/招标文件/评分项/资质/
  投标文件要求/章节/评审/评分/知识库/标书
- 7个角色能力模块(bid_*_capability):采集摘要/解析/知识库资质/编写/评审/合成/评分
- bid_flow 状态对账器:角色任务唯一创建者+阻塞门禁(源头守门,引擎零特判)
- bid_mail:阿里云企业邮 IMAP 采集(凭据存DB AES,客户端专用密码兼容)
- 能力包注册(bid_ability)+ 角色工具自注册(role_tool_schemas)
- 技能:6 common 状态机/规范 + 9 角色技能(pipelines/bidding_general,随 pipeline-core 部署)
- i18n(zh/en)、init/data.json(appcodes+pipelines记录)、build.sh、RBAC load_path
2026-08-26 23:45:03 +08:00

133 lines
3.0 KiB
JSON

{
"summary": [
{
"name": "bid_scoring_items",
"title": "评分项与得分规则",
"primary": [
"id"
],
"catelog": "entity"
}
],
"fields": [
{
"name": "id",
"title": "主键ID",
"type": "str",
"length": 32,
"nullable": "no"
},
{
"name": "project_id",
"title": "项目ID",
"type": "str",
"length": 32,
"nullable": "no"
},
{
"name": "section",
"title": "评分部分",
"type": "str",
"length": 32,
"nullable": "no",
"default": "technical"
},
{
"name": "item_no",
"title": "评分项编号",
"type": "str",
"length": 32
},
{
"name": "item_name",
"title": "评分项名称",
"type": "str",
"length": 255,
"nullable": "no"
},
{
"name": "max_score",
"title": "满分",
"type": "float",
"length": 8,
"dec": 2,
"nullable": "no",
"default": "0"
},
{
"name": "scoring_rule",
"title": "得分规则",
"type": "text"
},
{
"name": "is_veto",
"title": "否决项",
"type": "str",
"length": 1,
"nullable": "no",
"default": "0"
},
{
"name": "weight",
"title": "权重",
"type": "float",
"length": 8,
"dec": 4
},
{
"name": "source_ref",
"title": "招标文件出处",
"type": "str",
"length": 500
},
{
"name": "target_chapter_no",
"title": "对应章节号",
"type": "str",
"length": 32
},
{
"name": "order_no",
"title": "排序",
"type": "int",
"default": "0"
},
{
"name": "created_at",
"title": "创建时间",
"type": "timestamp",
"nullable": "no"
},
{
"name": "updated_at",
"title": "更新时间",
"type": "timestamp"
}
],
"indexes": [
{
"name": "idx_bsi_project",
"idxtype": "index",
"idxfields": [
"project_id"
]
},
{
"name": "idx_bsi_section",
"idxtype": "index",
"idxfields": [
"section"
]
}
],
"codes": [
{
"field": "section",
"table": "appcodes_kv",
"valuefield": "k",
"textfield": "v",
"cond": "parentid='bid_scoring_section'"
}
]
}