Authored by min.ling

Merge branch 'dev-3008' into test6.9.2

... ... @@ -342,8 +342,8 @@ public class TradeBillsServiceImpl implements ITradeBillsService {
*/
public int saveInvestUser(InvestUserBO investUserBO){
LOGGER.info("enter saveInvestUser with req is {}",investUserBO);
if(investUserBO.getUid() == null || StringUtils.isEmpty(investUserBO.getInvestName())){
LOGGER.warn("saveInvestUser with params null");
if(investUserBO.getUid() == null){
LOGGER.warn("saveInvestUser with uid null");
return 0;
}
int result = zhimaCertMapper.updateInvestNameByUid(investUserBO.getUid(),investUserBO.getInvestName());
... ...