This commit is contained in:
邹宗楠
2022-10-19 17:11:02 +08:00
parent 80230993c6
commit 9ffc6dd32d
4 changed files with 75 additions and 28 deletions

View File

@@ -53,29 +53,29 @@ type VoiceSettingDetail struct {
RiderTakeOrderVoice int `json:"rider_take_order_voice"` // 骑手接单语音[1打开]
ApplyUserOrderCancelVoice int `json:"apply_user_order_cancel_voice"` // 用户申请取消订单语音提示[1打开]
ApplyRefundOrderVoice int `json:"apply_refund_order_voice"` // 用户申请退款提示语音[1打开]
ApplyRefundGoodsVoice int `json:"apply_refund_goods_voice"` // 用户申请退货提示语音[1打开]
RefundGoodsVoice int `json:"refund_goods_voice"` // 订单已经取消语音[1打开]
ConfirmGoodsVoice int `json:"confirm_goods_voice"` // 确认接单语音[1打开]
SuccessGoodsVoice int `json:"success_goods_voice"` // 订单完成语音[1打开]
ConsultingPrint int `json:"consulting_print"` // 客户进店咨询打印[1打开]
ReminderVoice int `json:"reminder_voice"` // 客户催单语音[1打开]
CustomerRejectionVoice int `json:"customer_rejection_voice"` // 客户拒收语音[1打开]
CusterRefundVoice int `json:"custer_refund_voice"` // 客服(平台)退款语音[1打开]
LoseAuthorization int `json:"lose_authorization"` // 失去授权语音提示[1打开]
ApplyRefundGoodsVoice int `json:"apply_refund_goods_voice"` // 用户申请退货提示语音[1打开]
SuccessGoodsVoice int `json:"success_goods_voice"` // 订单完成语音[1打开](没语音)
ReminderVoice int `json:"reminder_voice"` // 客户催单语音[1打开]
ConsultingPrint int `json:"consulting_print"` // 客户进店咨询打印[1打开](暂时没有)
ConfirmGoodsVoice int `json:"confirm_goods_voice"` // 确认接单语音[1打开](可以不做)
}
// PrintSettingDetail 打印设置
type PrintSettingDetail struct {
UserOrderCancel int `json:"user_order_cancel"` // 用户取消订单打印[1打开]
RefundOrder int `json:"refund_order"` // 订单退款打印[1打开]
BusinessOrderCancel int `json:"business_order_cancel"` // 商家取消打印[1打开]
RiderTakeOrder int `json:"rider_take_order"` // 骑手接单打印[1打开]
CusterRefundPrint int `json:"custer_refund_print"` // 客服退款打印[1打开]
WaitOrderPrint int `json:"wait_order_print"` // 待接单打印[1打开]
ApplyUserCancelOrder int `json:"apply_user_cancel_order"` // 用户申请取消订单打印[1打开]
ApplyUserRefund int `json:"apply_user_refund"` // 申请部分退款打印[1打开]
OrderCancelSuccess int `json:"order_cancel_success"` // 取消成功打印[1打开]
CustomerRejectionPrint int `json:"customer_rejection_print"` // 客户拒收打印[1打开]
OrderCancelSuccess int `json:"order_cancel_success"` // 取消成功打印[1打开]
BusinessOrderCancel int `json:"business_order_cancel"` // 商家取消打印[1打开]
RefundOrder int `json:"refund_order"` // 订单退款打印[1打开]
}
// UnMarshalString2Json 将字符串设置转换为对象设置