proto.api.GetAbnormalDataRes.AbnormalData */ class AbnormalData extends \Google\Protobuf\Internal\Message { /** * 电池隐患数量 * * Generated from protobuf field int32 battery_count = 1; */ protected $battery_count = 0; /** * 充电桩隐患数量 * * Generated from protobuf field int32 chrpannel_count = 2; */ protected $chrpannel_count = 0; /** * 日期 * * Generated from protobuf field string date = 3; */ protected $date = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $battery_count * 电池隐患数量 * @type int $chrpannel_count * 充电桩隐患数量 * @type string $date * 日期 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\LargeScreenData::initOnce(); parent::__construct($data); } /** * 电池隐患数量 * * Generated from protobuf field int32 battery_count = 1; * @return int */ public function getBatteryCount() { return $this->battery_count; } /** * 电池隐患数量 * * Generated from protobuf field int32 battery_count = 1; * @param int $var * @return $this */ public function setBatteryCount($var) { GPBUtil::checkInt32($var); $this->battery_count = $var; return $this; } /** * 充电桩隐患数量 * * Generated from protobuf field int32 chrpannel_count = 2; * @return int */ public function getChrpannelCount() { return $this->chrpannel_count; } /** * 充电桩隐患数量 * * Generated from protobuf field int32 chrpannel_count = 2; * @param int $var * @return $this */ public function setChrpannelCount($var) { GPBUtil::checkInt32($var); $this->chrpannel_count = $var; return $this; } /** * 日期 * * Generated from protobuf field string date = 3; * @return string */ public function getDate() { return $this->date; } /** * 日期 * * Generated from protobuf field string date = 3; * @param string $var * @return $this */ public function setDate($var) { GPBUtil::checkString($var, True); $this->date = $var; return $this; } }