/* * 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.apifdxweb.model.searchentities.tmp; import com.megatim.fdxcommons.model.enumeration.SearchAnnotationOperateur; import com.megatim.fdxcommons.model.search.Search; import lombok.Getter; import lombok.Setter; /** * * @author ASUS */ @Getter @Setter public class TypeFichierDataTmpSearch { @Search(fieldName = "numeroLigne", operateur = SearchAnnotationOperateur.EQUALS) private int numeroLigne; @Search(fieldName = "tokenId", operateur = SearchAnnotationOperateur.EQUALS) private Long tokenId; }