All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.schedule.model.storage.ResultCodeGroup Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.storage;

import java.util.List;
import lombok.Data;

@Data
public class ResultCodeGroup {

  private List categoryGroups;
  private int resultCode;

  @Data
  public static class CategoryGroup {

    private String categoryName;
    private List resultIds;
  }

  @Data
  public static class IdPair {

    private String recordId;
    private String targetId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy