This commit is contained in:
2026-08-28 11:12:23 +08:00
parent cd8a571f57
commit ae143c21ad
8 changed files with 243 additions and 23 deletions
+19
View File
@@ -5,6 +5,25 @@ import (
"lone-services/services/order/internal/dao"
)
const (
PayStatusOk = 1 //1为已支付
PayStatusNo = 2 //2为未支付
PayStatusIn = 3 //为支付中
PayStatusFail = 4 //4支付失败,5已失效
PayStatusCancel = 5 //5已失效
AccountOrderStatusOk = 1 //已结算
AccountOrderStatusNo = 2 //未结算
AccountShareStatusOk = 1 //已结算
AccountShareStatusNo = 2 //未结算
VerifyOk = 1 //通过
VerifyRefuse = 2 //拒绝
VerifyCheckIn = 3 //一审中
VerifySecondCheckIn = 4 //二审中
)
type OrderModel struct {
modelbase.Base
}