22 lines
1.3 KiB
Go
22 lines
1.3 KiB
Go
package orderProductRefundResponse
|
||
|
||
import (
|
||
"hospital-admin-api/api/model"
|
||
)
|
||
|
||
// OrderProductRefund 药品订单退款详情
|
||
type OrderProductRefund struct {
|
||
ProductRefundId string `json:"product_refund_id"` // 主键id
|
||
PatientId string `json:"patient_id"` // 患者id
|
||
OrderProductId string `json:"order_product_id"` // 订单-药品订单id
|
||
OrderProductNo string `json:"order_product_no"` // 系统订单编号
|
||
ProductRefundNo string `json:"product_refund_no"` // 系统退款编号
|
||
RefundId string `json:"refund_id"` // 第三方退款单号
|
||
ProductRefundStatus int `json:"product_refund_status"` // 商品订单退款状态(0:无退款 1:申请退款 2:退款中 3:退款成功 4:拒绝退款 5:退款关闭 6:退款异常)
|
||
RefundTotal float64 `json:"refund_total"` // 退款金额
|
||
RefundReason string `json:"refund_reason"` // 退款原因
|
||
SuccessTime model.LocalTime `json:"success_time"` // 退款成功时间
|
||
CreatedAt model.LocalTime `json:"created_at"` // 创建时间
|
||
UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间
|
||
}
|