<?php
namespace App\Entity;
/**
* DashboardSearch
*
*/
class DashboardSearch
{
/**
* @var \RefGroupe
*/
public $groupe;
/**
* @var \TblPersonnel
*/
public $personnel;
/**
* @var \TblParcelle
*/
public $parcelle;
/**
* @var \RefTypeProduit
*/
public $typeProduit;
/**
* @var \Datetype
*/
public $dateDebut;
/**
* @var \Datetype
*/
public $dateFin;
function isVide() : bool {
if( $this->personnel or $this->groupe or $this->parcelle or $this->typeProduit or $this->dateDebut or $this->dateFin){
return true;
}
return false;
}
}