voucher/models/voucher_rule.json

47 lines
1.8 KiB
JSON

{
"summary": [
{
"name": "voucher_rule",
"title": "代金券规则",
"primary": ["id"],
"catelog": "entity"
}
],
"fields": [
{"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "template_id", "title": "模板ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "rule_type", "title": "规则类型", "type": "str", "length": 64, "nullable": "no"},
{"name": "rule_config", "title": "规则配置JSON", "type": "text", "nullable": "yes"},
{"name": "enabled", "title": "是否启用", "type": "char", "length": 1, "nullable": "no", "default": "1"},
{"name": "sort_order", "title": "执行顺序", "type": "int", "nullable": "no", "default": "0"},
{"name": "remark", "title": "备注", "type": "str", "length": 500, "nullable": "yes"},
{"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"},
{"name": "updated_at", "title": "更新时间", "type": "timestamp", "nullable": "no"}
],
"indexes": [
{"name": "idx_vr_template", "idxtype": "index", "idxfields": ["template_id"]}
],
"codes": [
{
"field": "template_id",
"table": "voucher_template",
"valuefield": "id",
"textfield": "name"
},
{
"field": "rule_type",
"table": "appcodes_kv",
"valuefield": "k",
"textfield": "v",
"cond": "parentid='vchr_rule_type'"
},
{
"field": "enabled",
"table": "appcodes_kv",
"valuefield": "k",
"textfield": "v",
"cond": "parentid='vchr_enabled'"
}
]
}