营销系统对接
This commit is contained in:
parent
df889c2df8
commit
700ed725dd
|
@ -3,6 +3,8 @@ package front
|
||||||
import (
|
import (
|
||||||
"qteam/app/models/ordersmodel"
|
"qteam/app/models/ordersmodel"
|
||||||
"qteam/app/utils"
|
"qteam/app/utils"
|
||||||
|
"qteam/app/utils/encrypt"
|
||||||
|
"qteam/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
type OrderCreateRequest struct {
|
type OrderCreateRequest struct {
|
||||||
|
@ -41,7 +43,9 @@ func (p *OrderListResponse) ResponseFromDb(l ordersmodel.OrdersProductsList) {
|
||||||
p.ProductId = l.ProductId
|
p.ProductId = l.ProductId
|
||||||
p.ProductName = l.ProductName
|
p.ProductName = l.ProductName
|
||||||
p.State = l.State
|
p.State = l.State
|
||||||
p.VoucherLink = l.VoucherLink
|
if l.VoucherLink != "" {
|
||||||
|
p.VoucherLink = string(encrypt.AesDecryptCBC(l.VoucherLink, []byte(config.GetConf().OpenApiMarketConfig.SecretKey)))
|
||||||
|
}
|
||||||
p.CreateTime = l.CreateTime.Format("2006-01-02 15:04:05")
|
p.CreateTime = l.CreateTime.Format("2006-01-02 15:04:05")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue