SupvipDTO.php 631 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Generated\V1\DTOs;
  3. use Kamicloud\StubApi\Concerns\ValueHelper;
  4. use Kamicloud\StubApi\DTOs\DTO;
  5. use Kamicloud\StubApi\Utils\Constants;
  6. class SupvipDTO extends DTO
  7. {
  8. use ValueHelper;
  9. protected $supvipEndat;
  10. /**
  11. * @return int
  12. */
  13. public function getSupvipEndat()
  14. {
  15. return $this->supvipEndat;
  16. }
  17. public function setSupvipEndat($supvipEndat)
  18. {
  19. $this->supvipEndat = $supvipEndat;
  20. }
  21. public function getAttributeMap()
  22. {
  23. return [
  24. ['supvipEndat', 'supvip_endat', 'bail|integer', Constants::INTEGER, null],
  25. ];
  26. }
  27. }