src/Entity/Clientmailchimp.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * Clientmailchimp
  6. *
  7. * @ORM\Table(name="clientmailchimp", options={"collate"="latin1_general_ci","charset"="latin1"})
  8. * @ORM\Entity
  9. */
  10. class Clientmailchimp
  11. {
  12. /**
  13. * @ORM\OneToOne(targetEntity="App\Entity\Client", cascade={"persist"})
  14. * @ORM\Id
  15. * @ORM\JoinColumn(nullable=false)
  16. */
  17. private $idclient;
  18. /**
  19. * @var boolean
  20. *
  21. * @ORM\Column(name="prospect", type="boolean", nullable=false)
  22. */
  23. private $prospect;
  24. /**
  25. * @var string
  26. *
  27. * @ORM\Column(name="enseigne", type="string", length=150, nullable=false)
  28. */
  29. private $enseigne;
  30. /**
  31. * @var string
  32. *
  33. * @ORM\Column(name="contact", type="string", length=150, nullable=false)
  34. */
  35. private $contact;
  36. /**
  37. * @var string
  38. *
  39. * @ORM\Column(name="email", type="string", length=150, nullable=false)
  40. */
  41. private $email;
  42. /**
  43. * @var boolean
  44. *
  45. * @ORM\Column(name="AUTRE", type="boolean", nullable=false)
  46. */
  47. private $autre;
  48. /**
  49. * @var boolean
  50. *
  51. * @ORM\Column(name="BOISSON", type="boolean", nullable=false)
  52. */
  53. private $boisson;
  54. /**
  55. * @var boolean
  56. *
  57. * @ORM\Column(name="FRUITS_ET_LEGUMES", type="boolean", nullable=false)
  58. */
  59. private $fruitsEtLegumes;
  60. /**
  61. * @var boolean
  62. *
  63. * @ORM\Column(name="BOUCHERIE", type="boolean", nullable=false)
  64. */
  65. private $boucherie;
  66. /**
  67. * @var boolean
  68. *
  69. * @ORM\Column(name="PRODUITS_DE_LA_MER", type="boolean", nullable=false)
  70. */
  71. private $produitsDeLaMer;
  72. /**
  73. * @var boolean
  74. *
  75. * @ORM\Column(name="EPICERIE", type="boolean", nullable=false)
  76. */
  77. private $epicerie;
  78. /**
  79. * @var boolean
  80. *
  81. * @ORM\Column(name="CREMERIE", type="boolean", nullable=false)
  82. */
  83. private $cremerie;
  84. /**
  85. * @var boolean
  86. *
  87. * @ORM\Column(name="HYGIENE", type="boolean", nullable=false)
  88. */
  89. private $hygiene;
  90. /**
  91. * @var boolean
  92. *
  93. * @ORM\Column(name="ART_DE_LA_TABLE", type="boolean", nullable=false)
  94. */
  95. private $artDeLaTable;
  96. /**
  97. * @var boolean
  98. *
  99. * @ORM\Column(name="CHAMPAGNE_ET_VINS_DU_RHONE", type="boolean", nullable=false)
  100. */
  101. private $champagneEtVinsDuRhone;
  102. /**
  103. * @var boolean
  104. *
  105. * @ORM\Column(name="GENERALISTES_FSA", type="boolean", nullable=false)
  106. */
  107. private $generalistesFSA;
  108. /**
  109. * @var boolean
  110. *
  111. * @ORM\Column(name="SURGELES", type="boolean", nullable=false)
  112. */
  113. private $surgeles;
  114. /**
  115. * Set prospect
  116. *
  117. * @param boolean $prospect
  118. * @return Clientmailchimp
  119. */
  120. public function setProspect($prospect)
  121. {
  122. $this->prospect = $prospect;
  123. return $this;
  124. }
  125. /**
  126. * Get prospect
  127. *
  128. * @return boolean
  129. */
  130. public function getProspect()
  131. {
  132. return $this->prospect;
  133. }
  134. /**
  135. * Set enseigne
  136. *
  137. * @param string $enseigne
  138. * @return Clientmailchimp
  139. */
  140. public function setEnseigne($enseigne)
  141. {
  142. $this->enseigne = $enseigne;
  143. return $this;
  144. }
  145. /**
  146. * Get enseigne
  147. *
  148. * @return string
  149. */
  150. public function getEnseigne()
  151. {
  152. return $this->enseigne;
  153. }
  154. /**
  155. * Set contact
  156. *
  157. * @param string $contact
  158. * @return Clientmailchimp
  159. */
  160. public function setContact($contact)
  161. {
  162. $this->contact = $contact;
  163. return $this;
  164. }
  165. /**
  166. * Get contact
  167. *
  168. * @return string
  169. */
  170. public function getContact()
  171. {
  172. return $this->contact;
  173. }
  174. /**
  175. * Set email
  176. *
  177. * @param string $email
  178. * @return Clientmailchimp
  179. */
  180. public function setEmail($email)
  181. {
  182. $this->email = $email;
  183. return $this;
  184. }
  185. /**
  186. * Get email
  187. *
  188. * @return string
  189. */
  190. public function getEmail()
  191. {
  192. return $this->email;
  193. }
  194. /**
  195. * Set autre
  196. *
  197. * @param boolean $autre
  198. * @return Clientmailchimp
  199. */
  200. public function setAutre($autre)
  201. {
  202. $this->autre = $autre;
  203. return $this;
  204. }
  205. /**
  206. * Get autre
  207. *
  208. * @return boolean
  209. */
  210. public function getAutre()
  211. {
  212. return $this->autre;
  213. }
  214. /**
  215. * Set boisson
  216. *
  217. * @param boolean $boisson
  218. * @return Clientmailchimp
  219. */
  220. public function setBoisson($boisson)
  221. {
  222. $this->boisson = $boisson;
  223. return $this;
  224. }
  225. /**
  226. * Get boisson
  227. *
  228. * @return boolean
  229. */
  230. public function getBoisson()
  231. {
  232. return $this->boisson;
  233. }
  234. /**
  235. * Set fruitsEtLegumes
  236. *
  237. * @param boolean $fruitsEtLegumes
  238. * @return Clientmailchimp
  239. */
  240. public function setFruitsEtLegumes($fruitsEtLegumes)
  241. {
  242. $this->fruitsEtLegumes = $fruitsEtLegumes;
  243. return $this;
  244. }
  245. /**
  246. * Get fruitsEtLegumes
  247. *
  248. * @return boolean
  249. */
  250. public function getFruitsEtLegumes()
  251. {
  252. return $this->fruitsEtLegumes;
  253. }
  254. /**
  255. * Set boucherie
  256. *
  257. * @param boolean $boucherie
  258. * @return Clientmailchimp
  259. */
  260. public function setBoucherie($boucherie)
  261. {
  262. $this->boucherie = $boucherie;
  263. return $this;
  264. }
  265. /**
  266. * Get boucherie
  267. *
  268. * @return boolean
  269. */
  270. public function getBoucherie()
  271. {
  272. return $this->boucherie;
  273. }
  274. /**
  275. * Set produitsDeLaMer
  276. *
  277. * @param boolean $produitsDeLaMer
  278. * @return Clientmailchimp
  279. */
  280. public function setProduitsDeLaMer($produitsDeLaMer)
  281. {
  282. $this->produitsDeLaMer = $produitsDeLaMer;
  283. return $this;
  284. }
  285. /**
  286. * Get produitsDeLaMer
  287. *
  288. * @return boolean
  289. */
  290. public function getProduitsDeLaMer()
  291. {
  292. return $this->produitsDeLaMer;
  293. }
  294. /**
  295. * Set epicerie
  296. *
  297. * @param boolean $epicerie
  298. * @return Clientmailchimp
  299. */
  300. public function setEpicerie($epicerie)
  301. {
  302. $this->epicerie = $epicerie;
  303. return $this;
  304. }
  305. /**
  306. * Get epicerie
  307. *
  308. * @return boolean
  309. */
  310. public function getEpicerie()
  311. {
  312. return $this->epicerie;
  313. }
  314. /**
  315. * Set cremerie
  316. *
  317. * @param boolean $cremerie
  318. * @return Clientmailchimp
  319. */
  320. public function setCremerie($cremerie)
  321. {
  322. $this->cremerie = $cremerie;
  323. return $this;
  324. }
  325. /**
  326. * Get cremerie
  327. *
  328. * @return boolean
  329. */
  330. public function getCremerie()
  331. {
  332. return $this->cremerie;
  333. }
  334. /**
  335. * Set hygiene
  336. *
  337. * @param boolean $hygiene
  338. * @return Clientmailchimp
  339. */
  340. public function setHygiene($hygiene)
  341. {
  342. $this->hygiene = $hygiene;
  343. return $this;
  344. }
  345. /**
  346. * Get hygiene
  347. *
  348. * @return boolean
  349. */
  350. public function getHygiene()
  351. {
  352. return $this->hygiene;
  353. }
  354. /**
  355. * Set artDeLaTable
  356. *
  357. * @param boolean $artDeLaTable
  358. * @return Clientmailchimp
  359. */
  360. public function setArtDeLaTable($artDeLaTable)
  361. {
  362. $this->artDeLaTable = $artDeLaTable;
  363. return $this;
  364. }
  365. /**
  366. * Get artDeLaTable
  367. *
  368. * @return boolean
  369. */
  370. public function getArtDeLaTable()
  371. {
  372. return $this->artDeLaTable;
  373. }
  374. /**
  375. * Set champagneEtVinsDuRhone
  376. *
  377. * @param boolean $champagneEtVinsDuRhone
  378. * @return Clientmailchimp
  379. */
  380. public function setChampagneEtVinsDuRhone($champagneEtVinsDuRhone)
  381. {
  382. $this->champagneEtVinsDuRhone = $champagneEtVinsDuRhone;
  383. return $this;
  384. }
  385. /**
  386. * Get champagneEtVinsDuRhone
  387. *
  388. * @return boolean
  389. */
  390. public function getChampagneEtVinsDuRhone()
  391. {
  392. return $this->champagneEtVinsDuRhone;
  393. }
  394. /**
  395. * Set generalistesFSA
  396. *
  397. * @param boolean $generalistesFSA
  398. * @return Clientmailchimp
  399. */
  400. public function setGeneralistesFSA($generalistesFSA)
  401. {
  402. $this->generalistesFSA = $generalistesFSA;
  403. return $this;
  404. }
  405. /**
  406. * Get generalistesFSA
  407. *
  408. * @return boolean
  409. */
  410. public function getGeneralistesFSA()
  411. {
  412. return $this->generalistesFSA;
  413. }
  414. /**
  415. * Set surgeles
  416. *
  417. * @param boolean $surgeles
  418. * @return Clientmailchimp
  419. */
  420. public function setSurgeles($surgeles)
  421. {
  422. $this->surgeles = $surgeles;
  423. return $this;
  424. }
  425. /**
  426. * Get surgeles
  427. *
  428. * @return boolean
  429. */
  430. public function getSurgeles()
  431. {
  432. return $this->surgeles;
  433. }
  434. /**
  435. * Set idclient
  436. *
  437. * @param Client $idclient
  438. * @return Clientmailchimp
  439. */
  440. public function setIdclient(Client $idclient)
  441. {
  442. $this->idclient = $idclient;
  443. return $this;
  444. }
  445. /**
  446. * Get idclient
  447. *
  448. * @return Client
  449. */
  450. public function getIdclient()
  451. {
  452. return $this->idclient;
  453. }
  454. }