src/Entity/Idempiere/CPaymentterm.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Idempiere;
  3. use App\Repository\Idempiere\CPaymenttermRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=CPaymenttermRepository::class)
  7. * @ORM\Table(name="c_paymentterm")
  8. */
  9. class CPaymentterm
  10. {
  11. /**
  12. * @ORM\Id
  13. * @ORM\Column(type="integer")
  14. */
  15. private $c_paymentterm_id;
  16. /**
  17. * @ORM\Column(type="string", length=255)
  18. */
  19. private $c_paymentterm_uu;
  20. /**
  21. * @ORM\Column(type="string", length=1)
  22. */
  23. private $isactive;
  24. /**
  25. * @ORM\Column(type="string", length=255)
  26. */
  27. private $name;
  28. /**
  29. * @ORM\Column(type="string", length=1)
  30. */
  31. private $isdefault;
  32. /**
  33. * @ORM\Column(type="string", length=255)
  34. */
  35. private $value;
  36. /**
  37. * @ORM\Column(type="string", length=255)
  38. */
  39. private $paymenttermusage;
  40. /**
  41. * @ORM\Column(type="integer")
  42. */
  43. private $ad_client_id;
  44. /**
  45. * @ORM\Column(type="integer")
  46. */
  47. private $netdays;
  48. public function getId(): ?int
  49. {
  50. return $this->getCPaymenttermId();
  51. }
  52. public function getCPaymenttermId(): ?int
  53. {
  54. return $this->c_paymentterm_id;
  55. }
  56. public function setCPaymenttermId(int $c_paymentterm_id): self
  57. {
  58. $this->c_paymentterm_id = $c_paymentterm_id;
  59. return $this;
  60. }
  61. public function getCPaymenttermUu(): ?string
  62. {
  63. return $this->c_paymentterm_uu;
  64. }
  65. public function setCPaymenttermUu(string $c_paymentterm_uu): self
  66. {
  67. $this->c_paymentterm_uu = $c_paymentterm_uu;
  68. return $this;
  69. }
  70. public function getIsactive(): ?string
  71. {
  72. return $this->isactive;
  73. }
  74. public function setIsactive(string $isactive): self
  75. {
  76. $this->isactive = $isactive;
  77. return $this;
  78. }
  79. public function getName(): ?string
  80. {
  81. return $this->name;
  82. }
  83. public function setName(string $name): self
  84. {
  85. $this->name = $name;
  86. return $this;
  87. }
  88. public function getIsdefault(): ?string
  89. {
  90. return $this->isdefault;
  91. }
  92. public function setIsdefault(string $isdefault): self
  93. {
  94. $this->isdefault = $isdefault;
  95. return $this;
  96. }
  97. public function getValue(): ?string
  98. {
  99. return $this->value;
  100. }
  101. public function setValue(string $value): self
  102. {
  103. $this->value = $value;
  104. return $this;
  105. }
  106. public function getPaymenttermusage(): ?string
  107. {
  108. return $this->paymenttermusage;
  109. }
  110. public function setPaymenttermusage(string $paymenttermusage): self
  111. {
  112. $this->paymenttermusage = $paymenttermusage;
  113. return $this;
  114. }
  115. public function getAdClientId(): ?int
  116. {
  117. return $this->ad_client_id;
  118. }
  119. public function setAdClientId(int $ad_client_id): self
  120. {
  121. $this->ad_client_id = $ad_client_id;
  122. return $this;
  123. }
  124. public function getNetDays(): int
  125. {
  126. return $this->netdays;
  127. }
  128. }