/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.megatim.fdxcommons.model.dtos.dataproduction; import com.megatim.fdxcommons.model.dataproduction.DataProductionType; import java.util.Set; import lombok.Getter; import lombok.Setter; /** * * @author ASUS */ @Getter @Setter public class ProductionMetaDataDto { private Long productionId; private DataProductionType dataProductionType; private Long startIndex; //Index de debut dans le cas d'un ADD private Long nbreElts; private CommonDataProductionDto dataProduction; private Set indexes; }