ProfileUserSupvipDTO.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 ProfileUserSupvipDTO extends DTO
  7. {
  8. use ValueHelper;
  9. protected $supvip_endat;
  10. protected $supvip_days;
  11. protected $locklikeme_cnt;
  12. /**
  13. * @return int|null
  14. */
  15. public function getSupvip_endat()
  16. {
  17. return $this->supvip_endat;
  18. }
  19. /**
  20. * @return int|null
  21. */
  22. public function getSupvip_days()
  23. {
  24. return $this->supvip_days;
  25. }
  26. /**
  27. * @return int|null
  28. */
  29. public function getLocklikeme_cnt()
  30. {
  31. return $this->locklikeme_cnt;
  32. }
  33. public function setSupvip_endat($supvip_endat)
  34. {
  35. $this->supvip_endat = $supvip_endat;
  36. }
  37. public function setSupvip_days($supvip_days)
  38. {
  39. $this->supvip_days = $supvip_days;
  40. }
  41. public function setLocklikeme_cnt($locklikeme_cnt)
  42. {
  43. $this->locklikeme_cnt = $locklikeme_cnt;
  44. }
  45. public function getAttributeMap()
  46. {
  47. return [
  48. ['supvip_endat', 'supvip_endat', 'bail|nullable|integer', Constants::INTEGER | Constants::OPTIONAL, null],
  49. ['supvip_days', 'supvip_days', 'bail|nullable|integer', Constants::INTEGER | Constants::OPTIONAL, null],
  50. ['locklikeme_cnt', 'locklikeme_cnt', 'bail|nullable|integer', Constants::INTEGER | Constants::OPTIONAL, null],
  51. ];
  52. }
  53. }