Esempio n. 1
0
 public IsdpDataFile getCellDataFileById(String id) {
   IsdpDataFile file = null;
   if (StringUtils.equals(DBUtils.POSTGRESQL, Environment.getCurrentDatabaseType())) {
     file = cellUpicInfoMapper.getCellDataFileById_postgres(id);
   } else {
     file = cellUpicInfoMapper.getCellDataFileById(id);
   }
   return file;
 }