Serving a payment option for my minecraft server so I don't have to pay for it all alone
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MinecraftMonthPaid.class.php 575B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @Name minecraft_month_paid
  4. * @Unique Month, Year
  5. */
  6. class MinecraftMonthPaid extends Entity {
  7. /**
  8. * @DB-Column
  9. * @Name ID
  10. * @Type INT
  11. * @Primary
  12. * @AutoIncrement
  13. * @NotNull
  14. */
  15. public $ID;
  16. /**
  17. * @DB-Column
  18. * @Name Amount
  19. * @Type DECIMAL(10,2)
  20. * @NotNull
  21. */
  22. public $Amount;
  23. /**
  24. * @DB-Column
  25. * @Name Month
  26. * @Type INT(4)
  27. * @NotNull
  28. */
  29. public $Month;
  30. /**
  31. * @DB-Column
  32. * @Name Year
  33. * @Type INT
  34. * @NotNull
  35. */
  36. public $Year;
  37. }