pipeline-sdlc/models/wechat_bind_code.json

23 lines
1.0 KiB
JSON

{
"summary": [
{
"name": "wechat_bind_code",
"title": "微信绑定验证码(验证码→用户,用于关注后发验证码绑定)",
"primary": ["id"],
"catelog": "entity"
}
],
"fields": [
{"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "code", "title": "验证码(6位数字)", "type": "str", "length": 10, "nullable": "no"},
{"name": "user_id", "title": "系统用户ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "org_id", "title": "机构ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "expires_at", "title": "过期时间", "type": "timestamp", "nullable": "no"},
{"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"}
],
"indexes": [
{"name": "idx_wbc_code", "idxtype": "unique", "idxfields": ["code"]},
{"name": "idx_wbc_user", "idxtype": "normal", "idxfields": ["user_id"]}
]
}