discount/init/data.json
Hermes Agent 1ba7e0e031 feat: 调整discount表结构
- 删除discount字段(折扣值在detail子表中)
- customerid标题说明*表示全部客户
- init/data.json添加organization表的*记录(全部客户选项)
2026-06-24 01:33:46 +08:00

47 lines
1016 B
JSON

{
"organization": [
{
"id": "*",
"orgname": "全部客户"
}
],
"appcodes": [
{
"id": "promo_code_type",
"name": "促销码类型",
"hierarchy_flg": "0"
},
{
"id": "bind_type",
"name": "客户绑定方式",
"hierarchy_flg": "0"
}
],
"appcodes_kv": [
{
"id": "promo_code_type_1",
"parentid": "promo_code_type",
"k": "1",
"v": "促销码"
},
{
"id": "promo_code_type_2",
"parentid": "promo_code_type",
"k": "2",
"v": "邀请码"
},
{
"id": "bind_type_1",
"parentid": "bind_type",
"k": "1",
"v": "促销码"
},
{
"id": "bind_type_2",
"parentid": "bind_type",
"k": "2",
"v": "手动分配"
}
]
}