AdminBaseInfo.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntAdmin.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.AdminBaseInfo</code>
  11. */
  12. class AdminBaseInfo extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 门店ID
  16. *
  17. * Generated from protobuf field <code>int32 admin_id = 1;</code>
  18. */
  19. protected $admin_id = 0;
  20. /**
  21. * 门店名称
  22. *
  23. * Generated from protobuf field <code>string shop_name = 2;</code>
  24. */
  25. protected $shop_name = '';
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type int $admin_id
  33. * 门店ID
  34. * @type string $shop_name
  35. * 门店名称
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\EntAdmin::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 门店ID
  44. *
  45. * Generated from protobuf field <code>int32 admin_id = 1;</code>
  46. * @return int
  47. */
  48. public function getAdminId()
  49. {
  50. return $this->admin_id;
  51. }
  52. /**
  53. * 门店ID
  54. *
  55. * Generated from protobuf field <code>int32 admin_id = 1;</code>
  56. * @param int $var
  57. * @return $this
  58. */
  59. public function setAdminId($var)
  60. {
  61. GPBUtil::checkInt32($var);
  62. $this->admin_id = $var;
  63. return $this;
  64. }
  65. /**
  66. * 门店名称
  67. *
  68. * Generated from protobuf field <code>string shop_name = 2;</code>
  69. * @return string
  70. */
  71. public function getShopName()
  72. {
  73. return $this->shop_name;
  74. }
  75. /**
  76. * 门店名称
  77. *
  78. * Generated from protobuf field <code>string shop_name = 2;</code>
  79. * @param string $var
  80. * @return $this
  81. */
  82. public function setShopName($var)
  83. {
  84. GPBUtil::checkString($var, True);
  85. $this->shop_name = $var;
  86. return $this;
  87. }
  88. }