ADemoPo2.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php declare(strict_types=1);
  2. namespace Toolkit\StdlibTest\Obj;
  3. use Toolkit\Stdlib\Obj\AbstractObj;
  4. /**
  5. * @author inhere
  6. */
  7. class ADemoPo2 extends AbstractObj
  8. {
  9. protected array $_jsonMap = [
  10. 'ot2' => 'oneTwo2',
  11. ];
  12. /**
  13. * @var bool
  14. */
  15. public bool $bol;
  16. /**
  17. * @var bool
  18. */
  19. public bool $bol1;
  20. /**
  21. * int
  22. *
  23. * @var integer
  24. */
  25. public int $int;
  26. /**
  27. * int2
  28. *
  29. * @var integer
  30. */
  31. public int $int2;
  32. /**
  33. * str
  34. *
  35. * @var string
  36. */
  37. public string $str;
  38. /**
  39. * str1
  40. *
  41. * @var string
  42. */
  43. public string $str1;
  44. /**
  45. * @var string
  46. */
  47. public string $oneTwo;
  48. /**
  49. * @var string
  50. */
  51. public string $oneTwo2;
  52. /**
  53. * arr
  54. *
  55. * @var array
  56. */
  57. public array $arr;
  58. /**
  59. * arr list
  60. *
  61. * @var array[]
  62. */
  63. public array $arrList;
  64. /**
  65. * obj
  66. *
  67. * @var self
  68. */
  69. public ADemoPo2 $obj;
  70. /**
  71. * obj list
  72. *
  73. * @var self[]
  74. */
  75. public array $objList;
  76. }