1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
| class Jbgdu31annonce
{
/**
* @ORM\OneToMany(targetEntity="Jbgdu31photo", cascade={"all"}, mappedBy="bgphoannonce")
*/
private $bgannphotos;
/**
* @ORM\ManyToOne(targetEntity="Jbgdu31user", inversedBy="bguseannonces")
* @ORM\JoinColumn(name="bganniduser", referencedColumnName="bguseid")
*/
private $bgannuser;
/**
* @ORM\ManyToOne(targetEntity="Jbgdu31departement", inversedBy="bgdepannonces")
* @ORM\JoinColumn(name="bgannnumdepartement", referencedColumnName="bgdepnumdepartement")
*/
private $bganndepartement;
/**
* @ORM\ManyToOne(targetEntity="Jbgdu31categorie", inversedBy="bgcatannonces")
* @ORM\JoinColumn(name="bgannidcategorie", referencedColumnName="bgcatid")
*/
private $bganncategorie;
/**
* @var integer
*
* @ORM\Column(name="bgannid", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $bgannid;
/**
* @var string
*
* @ORM\Column(name="bganniduser", type="string", length=2, nullable=false)
*/
private $bganniduser;
/**
* @var integer
*
* @ORM\Column(name="bgannnumdepartement", type="integer", nullable=false)
*/
private $bgannnumdepartement;
/**
* @var string
*
* @ORM\Column(name="bgannville", type="string", length=50, nullable=false)
*/
private $bgannville;
/**
* @var integer
*
* @ORM\Column(name="bgannidcategorie", type="integer", nullable=false)
*/
private $bgannidcategorie;
/**
* @var string
*
* @ORM\Column(name="bganntitre", type="string", length=50, nullable=false)
*/
private $bganntitre;
/**
* @var string
*
* @ORM\Column(name="bganndescription", type="text", nullable=false)
*/
private $bganndescription;
/**
* @var integer
*
* @ORM\Column(name="bgannprix", type="integer", nullable=false)
*/
private $bgannprix;
/**
* @var integer
*
* @ORM\Column(name="bganncommission", type="integer", nullable=false)
*/
private $bganncommission;
/**
* @var \DateTime
*
* @ORM\Column(name="bganndatecreation", type="datetime", nullable=false)
*/
private $bganndatecreation;
/**
* @var \DateTime
*
* @ORM\Column(name="bganndatedernieremodif", type="datetime", nullable=true)
*/
private $bganndatedernieremodif;
/**
* @var boolean
*
* @ORM\Column(name="bganntermine", type="boolean", nullable=false)
*/
private $bganntermine;
/**
* @var \DateTime
*
* @ORM\Column(name="bganndatetermine", type="datetime", nullable=true)
*/
private $bganndatetermine;
/**
* @var boolean
*
* @ORM\Column(name="bgannvalide", type="boolean", nullable=false)
*/
private $bgannvalide;
/**
* @var boolean
*
* @ORM\Column(name="bgannpayee", type="boolean", nullable=false)
*/
private $bgannpayee;
/**
* @var string
*
* @ORM\Column(name="bgannsource", type="string", length=10, nullable=false)
*/
private $bgannsource;
/**
* @var integer
*
* @ORM\Column(name="bgannlu", type="integer", nullable=false)
*/
private $bgannlu;
/**
* Constructor
*/
public function __construct()
{
$this->bgannvalide = false;
$this->bganntermine = false;
}
/**
* Get bgannid
*
* @return integer
*/
public function getBgannid()
{
return $this->bgannid;
}
/**
* Set bganniduser
*
* @param integer $bganniduser
* @return Jbgdu31annonce
*/
public function setBganniduser($bganniduser)
{
$this->bganniduser = $bganniduser;
return $this;
}
/**
* Get bganniduser
*
* @return integer
*/
public function getBganniduser()
{
return $this->bganniduser;
}
/**
* Set bgannnumdepartement
*
* @param integer $bgannnumdepartement
* @return Jbgdu31annonce
*/
public function setBgannnumdepartement($bgannnumdepartement)
{
$this->bgannnumdepartement = $bgannnumdepartement;
return $this;
}
/**
* Get bgannnumdepartement
*
* @return integer
*/
public function getBgannnumdepartement()
{
return $this->bgannnumdepartement;
}
/**
* Set bgannville
*
* @param string $bgannville
* @return Jbgdu31annonce
*/
public function setBgannville($bgannville)
{
$this->bgannville = $bgannville;
return $this;
}
/**
* Get bgannville
*
* @return string
*/
public function getBgannville()
{
return $this->bgannville;
}
/**
* Set bgannidcategorie
*
* @param integer $bgannidcategorie
* @return Jbgdu31annonce
*/
public function setBgannidcategorie($bgannidcategorie)
{
$this->bgannidcategorie = $bgannidcategorie;
return $this;
}
/**
* Get bgannidcategorie
*
* @return integer
*/
public function getBgannidcategorie()
{
return $this->bgannidcategorie;
}
/**
* Set bganntitre
*
* @param string $bganntitre
* @return Jbgdu31annonce
*/
public function setBganntitre($bganntitre)
{
$this->bganntitre = $bganntitre;
return $this;
}
/**
* Get bganntitre
*
* @return string
*/
public function getBganntitre()
{
return $this->bganntitre;
}
/**
* Set bganndescription
*
* @param string $bganndescription
* @return Jbgdu31annonce
*/
public function setBganndescription($bganndescription)
{
$this->bganndescription = $bganndescription;
return $this;
}
/**
* Get bganndescription
*
* @return string
*/
public function getBganndescription()
{
return $this->bganndescription;
}
/**
* Set bgannprix
*
* @param integer $bgannprix
* @return Jbgdu31annonce
*/
public function setBgannprix($bgannprix)
{
$this->bgannprix = $bgannprix;
return $this;
}
/**
* Get bgannprix
*
* @return integer
*/
public function getBgannprix()
{
return $this->bgannprix;
}
/**
* Set bganncommission
*
* @param integer $bganncommission
* @return Jbgdu31annonce
*/
public function setBganncommission($bganncommission)
{
$this->bganncommission = $bganncommission;
return $this;
}
/**
* Get bganncommission
*
* @return integer
*/
public function getBganncommission()
{
return $this->bganncommission;
}
/**
* Set bganndatecreation
*
* @param \DateTime $bganndatecreation
* @return Jbgdu31annonce
*/
public function setBganndatecreation($bganndatecreation)
{
$this->bganndatecreation = $bganndatecreation;
return $this;
}
/**
* Get bganndatecreation
*
* @return \DateTime
*/
public function getBganndatecreation()
{
return $this->bganndatecreation;
}
/**
* Set bganndatedernieremodif
*
* @param \DateTime $bganndatedernieremodif
* @return Jbgdu31annonce
*/
public function setBganndatedernieremodif($bganndatedernieremodif)
{
$this->bganndatedernieremodif = $bganndatedernieremodif;
return $this;
}
/**
* Get bganndatedernieremodif
*
* @return \DateTime
*/
public function getBganndatedernieremodif()
{
return $this->bganndatedernieremodif;
}
/**
* Set bganntermine
*
* @param boolean $bganntermine
* @return Jbgdu31annonce
*/
public function setBganntermine($bganntermine)
{
$this->bganntermine = $bganntermine;
return $this;
}
/**
* Get bganntermine
*
* @return boolean
*/
public function getBganntermine()
{
return $this->bganntermine;
}
/**
* Set bganndatetermine
*
* @param \DateTime $bganndatetermine
* @return Jbgdu31annonce
*/
public function setBganndatetermine($bganndatetermine)
{
$this->bganndatetermine = $bganndatetermine;
return $this;
}
/**
* Get bganndatetermine
*
* @return \DateTime
*/
public function getBganndatetermine()
{
return $this->bganndatetermine;
}
/**
* Set bgannvalide
*
* @param boolean $bgannvalide
* @return Jbgdu31annonce
*/
public function setBgannvalide($bgannvalide)
{
$this->bgannvalide = $bgannvalide;
return $this;
}
/**
* Get bgannvalide
*
* @return boolean
*/
public function getBgannvalide()
{
return $this->bgannvalide;
}
/**
* Set bgannpayee
*
* @param boolean $bgannpayee
* @return Jbgdu31annonce
*/
public function setBgannpayee($bgannpayee)
{
$this->bgannpayee = $bgannpayee;
return $this;
}
/**
* Get bgannpayee
*
* @return boolean
*/
public function getBgannpayee()
{
return $this->bgannpayee;
}
/**
* Set bgannsource
*
* @param string $bgannsource
* @return Jbgdu31annonce
*/
public function setBgannsource($bgannsource)
{
$this->bgannsource = $bgannsource;
return $this;
}
/**
* Get bgannsource
*
* @return string
*/
public function getBgannsource()
{
return $this->bgannsource;
}
/**
* Set bgannlu
*
* @param integer $bgannlu
* @return Jbgdu31annonce
*/
public function setBgannlu($bgannlu)
{
$this->bgannlu = $bgannlu;
return $this;
}
/**
* Get bgannlu
*
* @return integer
*/
public function getBgannlu()
{
return $this->bgannlu;
}
/**
* Add bgannphotos
*
* @param \TUA\EntitiesBundle\Entity\Jbgdu31photo $bgannphotos
* @return Jbgdu31annonce
*/
public function addBgannphoto(\TUA\EntitiesBundle\Entity\Jbgdu31photo $bgannphotos)
{
$this->bgannphotos[] = $bgannphotos;
return $this;
}
/**
* Remove bgannphotos
*
* @param \TUA\EntitiesBundle\Entity\Jbgdu31photo $bgannphotos
*/
public function removeBgannphoto(\TUA\EntitiesBundle\Entity\Jbgdu31photo $bgannphotos)
{
$this->bgannphotos->removeElement($bgannphotos);
}
/**
* Get bgannphotos
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getBgannphotos()
{
return $this->bgannphotos;
}
/**
* Set bgannuser
*
* @param \TUA\EntitiesBundle\Entity\Jbgdu31user $bgannuser
* @return Jbgdu31annonce
*/
public function setBgannuser(\TUA\EntitiesBundle\Entity\Jbgdu31user $bgannuser = null)
{
$this->bgannuser = $bgannuser;
return $this;
}
/**
* Get bgannuser
*
* @return \TUA\EntitiesBundle\Entity\Jbgdu31user
*/
public function getBgannuser()
{
return $this->bgannuser;
}
/**
* Set bganndepartement
*
* @param \TUA\EntitiesBundle\Entity\Jbgdu31departement $bganndepartement
* @return Jbgdu31annonce
*/
public function setBganndepartement(\TUA\EntitiesBundle\Entity\Jbgdu31departement $bganndepartement = null)
{
$this->bganndepartement = $bganndepartement;
return $this;
}
/**
* Get bganndepartement
*
* @return \TUA\EntitiesBundle\Entity\Jbgdu31departement
*/
public function getBganndepartement()
{
return $this->bganndepartement;
}
/**
* Set bganncategorie
*
* @param \TUA\EntitiesBundle\Entity\Jbgdu31categorie $bganncategorie
* @return Jbgdu31annonce
*/
public function setBganncategorie(\TUA\EntitiesBundle\Entity\Jbgdu31categorie $bganncategorie = null)
{
$this->bganncategorie = $bganncategorie;
return $this;
}
/**
* Get bganncategorie
*
* @return \TUA\EntitiesBundle\Entity\Jbgdu31categorie
*/
public function getBganncategorie()
{
return $this->bganncategorie;
}
} |
Partager