This commit is contained in:
richboo111
2022-08-03 11:11:28 +08:00
parent 6eaf2b37c9
commit 3ab6fd6b21

View File

@@ -148,7 +148,7 @@ type MixPayDetail struct {
//获取混合支付 余额部分信息
func GetMixPayDetail(orderID string) (mixPayDetail []*MixPayDetail, err error) {
sql := `SELECT * FROM mix_pay WHERE deleted_at = ? `
sql := "SELECT * FROM mix_pay WHERE deleted_at = ? "
sqlParams := []interface{}{
utils.DefaultTimeValue,
}