From 53cc491a0413c8092b342ca09cc0a46c97a354a3 Mon Sep 17 00:00:00 2001 From: gazebo Date: Sat, 13 Apr 2019 09:33:46 +0800 Subject: [PATCH] - order_Financial to order_financial --- business/jxcallback/orderman/financial.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxcallback/orderman/financial.go b/business/jxcallback/orderman/financial.go index 8b0be312b..399443266 100644 --- a/business/jxcallback/orderman/financial.go +++ b/business/jxcallback/orderman/financial.go @@ -28,9 +28,9 @@ func (c *OrderManager) SaveOrderFinancialInfo(order *model.OrderFinancial, opera if operation == partner.UpdatedPeration { // db := orm.NewOrm() err = utils.CallFuncLogError(func() error { - _, err = dao.ExecuteSQL(db, "DELETE FROM order_Financial WHERE vendor_order_id = ? AND vendor_id = ?", order.VendorOrderID, order.VendorID) + _, err = dao.ExecuteSQL(db, "DELETE FROM order_financial WHERE vendor_order_id = ? AND vendor_id = ?", order.VendorOrderID, order.VendorID) return err - }, "SaveOrderFinancialInfo delete order_Financial, orderID:%s", order.VendorOrderID) + }, "SaveOrderFinancialInfo delete order_financial, orderID:%s", order.VendorOrderID) if err != nil { return err }