Compare commits
15 Commits
Author | SHA1 | Date | |
---|---|---|---|
7d54fbd31d | |||
![]() |
f845aee1de | ||
1412fc67be | |||
![]() |
c25a65488e | ||
![]() |
dd74c1b5c6 | ||
![]() |
959cb87ee2 | ||
![]() |
c1d08db044 | ||
![]() |
9edec35425 | ||
![]() |
7c6e1ba3a8 | ||
![]() |
91324cd225 | ||
![]() |
92e71475d3 | ||
![]() |
48b3206053 | ||
![]() |
981dd3b98d | ||
88dd6fbdf5 | |||
![]() |
e0f73fc058 |
2
go.mod
2
go.mod
@@ -1,3 +1,3 @@
|
||||
module gitee.com/shenzhen-jinhuatai-network/common_structure
|
||||
module git.ssgfgtfy.com/public/common_structure
|
||||
|
||||
go 1.18.0
|
||||
|
4
log.go
4
log.go
@@ -12,10 +12,10 @@ const (
|
||||
type LogInfo struct {
|
||||
InfoType LogInfoType `json:"info_type"` // 类型
|
||||
ID int `json:"id"` // ID,订单ID,商品ID,商品SKUID之类的id
|
||||
Operator interface{} `json:"operator"` // 操作人
|
||||
Operator interface{} `json:"operator"` // 操作人,商家用户对象,admin对象或者是系统,关闭订单消费队列等
|
||||
Title string `json:"title"` // 标题,做什么事情
|
||||
Param interface{} `json:"param"` // 参数,请求参数,函数、方法就是参数
|
||||
Result interface{} `json:"result"` // 结果,返回值
|
||||
Err error `json:"err"` // 错误
|
||||
ErrStr string `json:"err_str"` // 错误信息,json转义error没有自动存储,需要手动转义
|
||||
At time.Time `json:"at"` // 记录时间
|
||||
}
|
||||
|
@@ -7,9 +7,15 @@ type OrderCreate struct {
|
||||
type OrderCloseType = int
|
||||
|
||||
const (
|
||||
OrderCloseTypePayTimeout OrderCloseType = 10 // 支付超时
|
||||
OrderCloseTypeRefundClose OrderCloseType = 20 // 退款关闭,判断商品是否仅退款
|
||||
OrderCloseTypeMerchantClose OrderCloseType = 30 // 商家关闭
|
||||
OrderCloseTypePayTimeout OrderCloseType = 10 // 支付超时
|
||||
OrderCloseTypeRefundClose OrderCloseType = 20 // 售后完成关闭
|
||||
OrderCloseTypeMerchantClose OrderCloseType = 30 // 商家关闭
|
||||
OrderCloseTypeThirdOrderFailedClose OrderCloseType = 40 // 第三方订单下单失败关闭
|
||||
OrderCloseTypeUser OrderCloseType = 50 // 用户主动关闭
|
||||
OrderCloseTypeMerchantCancel OrderCloseType = 60 //商家取消订单关闭
|
||||
OrderCloseTypeDeliveryTimeout OrderCloseType = 70 //发货超时关闭
|
||||
OrderCloseTypePaymentFailed OrderCloseType = 80 //创建支付失败
|
||||
|
||||
)
|
||||
|
||||
type OrderClose struct {
|
||||
@@ -69,3 +75,12 @@ type OrderUpdateSuccess struct {
|
||||
type ThirdOrderRefund struct {
|
||||
ID uint `json:"id"` // 订单ID
|
||||
}
|
||||
|
||||
type RedPacketRefund struct {
|
||||
ID uint `json:"id"` // 订单ID
|
||||
OrderProductsID uint `json:"order_products_id"` // 订单商品ID
|
||||
}
|
||||
|
||||
type OrderSentOvertime struct {
|
||||
ID uint `json:"id"` // 订单ID
|
||||
}
|
||||
|
8
rabbitmq_pay.go
Normal file
8
rabbitmq_pay.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package common_structure
|
||||
|
||||
type PayNotify struct {
|
||||
PayID uint `json:"pay_id"` // 支付ID
|
||||
PayNo string `json:"pay_no"` // 支付单号
|
||||
RemainExecNum int `json:"num"` // 剩余执行次数
|
||||
RemainRepeatNum int `json:"repeat_num"` // 剩余重复执行次数
|
||||
}
|
@@ -31,8 +31,10 @@ const (
|
||||
type ProductsChangeStock struct {
|
||||
OrderId uint `json:"order_id"`
|
||||
State StockState `json:"state"`
|
||||
SkuItems []*SkuItem `json:"sku_items"`
|
||||
DecreaseChangeStockType ProductsChangeStockType `json:"decrease_change_stock_type"`
|
||||
OrderProductsIDs []uint `json:"order_products_ids"` // 对应的订单商品ID集合加减库存,如果为0,整个订单商品加减库存
|
||||
|
||||
SkuItems []*SkuItem `json:"sku_items"` // 商家修改商品数量使用,旧逻辑兼容
|
||||
}
|
||||
|
||||
type SkuItem struct {
|
||||
|
Reference in New Issue
Block a user