package com.megatim.fdxcommons.tools.integration; import com.megatim.fdxcommons.model.dataproduction.CommonDataProduction; import com.megatim.fdxcommons.tools.database.tables.dto.FdxTableRowDto; import java.io.Serializable; import java.util.List; import java.util.Map; /** * * @author lenovo */ public class FdxConsultationIntegrationData implements Serializable { private List rows; private final CommonDataProduction dataProduction; public FdxConsultationIntegrationData(List rows, CommonDataProduction dataProduction) { this.rows = rows; this.dataProduction = dataProduction; } public FdxConsultationIntegrationData(CommonDataProduction dataProduction, List> jsonRows) { this.dataProduction = dataProduction; } public CommonDataProduction getDataProduction() { return dataProduction; } }