From 9462982f035e9a49820ea2d6f076cf6ea7799e1b Mon Sep 17 00:00:00 2001 From: zhangbb Date: Mon, 29 Apr 2019 14:58:08 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/tenwa/flow/fund/fundcollection/FundIncomeMethod.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src_tenwa/com/tenwa/flow/fund/fundcollection/FundIncomeMethod.java b/src_tenwa/com/tenwa/flow/fund/fundcollection/FundIncomeMethod.java index e6e155706..230974952 100644 --- a/src_tenwa/com/tenwa/flow/fund/fundcollection/FundIncomeMethod.java +++ b/src_tenwa/com/tenwa/flow/fund/fundcollection/FundIncomeMethod.java @@ -449,10 +449,10 @@ public class FundIncomeMethod { return c.doubleValue()+""; } public String check(JBOTransaction tx) throws Exception{ - String sql = "SELECT lfit.project_id,lpi.product_id,psl.paytype AS payType FROM"+ + String sql = "SELECT lfit.project_id,lpi.product_id,psl.paytype AS payType FROM "+ "lc_fund_income_temp lfit "+ "LEFT JOIN lb_project_info lpi ON lfit.project_id=lpi.id "+ - "LEFT JOIN PRD_SPECIFIC_LIBRARY psl ON psl.productid=lpi.product_id"+ + "LEFT JOIN PRD_SPECIFIC_LIBRARY psl ON psl.productid=lpi.product_id "+ "WHERE lfit.flowunid=:flowunid"; Map params=new HashMap(); params.put("flowunid", flowunid);