This commit is contained in:
yan.y
2024-05-20 09:32:12 +08:00
parent ae34bf5f26
commit b8fb0c8ee8
9 changed files with 208 additions and 80 deletions
+1
View File
@@ -131,6 +131,7 @@ type OrderMain struct {
PayStatus int `gorm:"default:0" json:"payStatus"` //支付状态 0未支付 1已支付
DispatchStatus int `gorm:"default:0" json:"dispatchStatus"` //派单状态 0未派单 1已派单
PayTotalAmount int `json:"payTotalAmount"` //支付总金额
TotalAmount int `json:"totalAmount"` //总金额
PayDiscount int `gorm:"default:0" json:"payDiscount"` //支付折扣
PayType int `gorm:"default:1" json:"payType"` //支付方式 1线下 2线上 3会员余额
}