tmerclub/es/2023-10-16-订单退款平台介入字段.md
2025-03-18 21:22:38 +08:00

41 lines
965 B
Markdown

# 增加订单退款相关平台介入字段
```
PUT order-refund/_mapping/_doc?include_type_name=true
{
"properties": {
"shopImgUrls": {
"type": "keyword",
"index": false,
"doc_values": false
},
"applyInterventionImgUrls": {
"type": "keyword",
"index": false,
"doc_values": false
},
"platformInterventionStatus": {
"type": "integer"
},
"applyInterventionReason": {
"type": "text"
},
"interventionRefundType": {
"type": "integer"
},
"afterInterventionRefundAmount": {
"type": "long"
},
"platformMessage": {
"type": "text"
},
"applyInterventionTime": {
"type": "date"
},
"interventionFinishTime": {
"type": "date"
}
}
}
```