Critere de recherche

This commit is contained in:
mepiphana2023
2024-04-23 14:58:56 +02:00
parent b7c4dc358c
commit 4d617f32c3
13 changed files with 217 additions and 21 deletions

View File

@@ -0,0 +1,26 @@
package fr.eni.enchere.bo;
public class Categorie {
int id;
String libelle;
public Categorie() {
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLibelle() {
return libelle;
}
public void setLibelle(String libelle) {
this.libelle = libelle;
}
}

View File

@@ -0,0 +1,22 @@
package fr.eni.enchere.bo;
public class SearchArticleCritere {
String title;
Integer noCategorie;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Integer getNoCategorie() {
return noCategorie;
}
public void setNoCategorie(Integer noCategorie) {
this.noCategorie = noCategorie;
}
}