41 lines
965 B
Markdown
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"
|
|
}
|
|
}
|
|
}
|
|
```
|