CityPackageCarModelEnt.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCarModel.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * Generated from protobuf message <code>proto.api.CityPackageCarModelEnt</code>
  11. */
  12. class CityPackageCarModelEnt extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 车型信息
  16. *
  17. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
  18. */
  19. protected $car_model_info = null;
  20. /**
  21. * 所属门店信息
  22. *
  23. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  24. */
  25. protected $shop_info = null;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type \Proto\Api\CarModelEnt $car_model_info
  33. * 车型信息
  34. * @type \Proto\Api\EntAdmin $shop_info
  35. * 所属门店信息
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\EntCarModel::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 车型信息
  44. *
  45. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
  46. * @return \Proto\Api\CarModelEnt|null
  47. */
  48. public function getCarModelInfo()
  49. {
  50. return $this->car_model_info;
  51. }
  52. public function hasCarModelInfo()
  53. {
  54. return isset($this->car_model_info);
  55. }
  56. public function clearCarModelInfo()
  57. {
  58. unset($this->car_model_info);
  59. }
  60. /**
  61. * 车型信息
  62. *
  63. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
  64. * @param \Proto\Api\CarModelEnt $var
  65. * @return $this
  66. */
  67. public function setCarModelInfo($var)
  68. {
  69. GPBUtil::checkMessage($var, \Proto\Api\CarModelEnt::class);
  70. $this->car_model_info = $var;
  71. return $this;
  72. }
  73. /**
  74. * 所属门店信息
  75. *
  76. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  77. * @return \Proto\Api\EntAdmin|null
  78. */
  79. public function getShopInfo()
  80. {
  81. return $this->shop_info;
  82. }
  83. public function hasShopInfo()
  84. {
  85. return isset($this->shop_info);
  86. }
  87. public function clearShopInfo()
  88. {
  89. unset($this->shop_info);
  90. }
  91. /**
  92. * 所属门店信息
  93. *
  94. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  95. * @param \Proto\Api\EntAdmin $var
  96. * @return $this
  97. */
  98. public function setShopInfo($var)
  99. {
  100. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  101. $this->shop_info = $var;
  102. return $this;
  103. }
  104. }