|
@@ -9,6 +9,7 @@ import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
@Service
|
|
@@ -25,6 +26,7 @@ public class FundNotMappingServiceImpl implements FundNotMappingService {
|
|
|
FundNotMappingInfoDO oldFundNotMappingInfoDO = fundNotMappingMapper.getFundNotMappingInfoByAliasId(fundNotMappingInfoDO.getFundAliasId());
|
|
|
if(oldFundNotMappingInfoDO != null){
|
|
|
fundNotMappingInfoDO.setId(oldFundNotMappingInfoDO.getId());
|
|
|
+ fundNotMappingInfoDO.setUpdateTime(new Date());
|
|
|
}
|
|
|
}catch (Exception e){
|
|
|
log.error(e.getMessage(),e);
|