1.修改bug

This commit is contained in:
zhangbb 2019-04-29 14:58:08 +08:00
parent 49590480f3
commit 9462982f03

View File

@ -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<String,String> params=new HashMap<String,String>();
params.put("flowunid", flowunid);