Ejemplo n.º 1
0
  // 获取ClientView备份数据
  public List<ClientView> getBackupsListClient(Date synTime, Long userId) {
    // TODO Auto-generated method stub
    Map<String, Object> params = new HashMap<String, Object>();
    params.put("lastSynTime", synTime);
    params.put("userId", userId);
    List<ClientView> backupsListClient = clientmapper.getBackupsListClient(params);

    return backupsListClient;
  }