proto.api.EntExchangeOrder */ class EntExchangeOrder extends \Google\Protobuf\Internal\Message { /** * 设备用途类型. * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE device_use_type = 1; */ protected $device_use_type = 0; /** * 租金 分 * * Generated from protobuf field int32 hire_money = 2; */ protected $hire_money = 0; /** * 租赁时长 * * Generated from protobuf field string hire_duration_str = 3; */ protected $hire_duration_str = ''; /** * 租赁单价 * * Generated from protobuf field int32 hire_price = 4; */ protected $hire_price = 0; /** * 订单编号 * * Generated from protobuf field string order_sn = 5; */ protected $order_sn = ''; /** * 租电类型 * * Generated from protobuf field .proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6; */ protected $device_hire_source = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $device_use_type * 设备用途类型. * @type int $hire_money * 租金 分 * @type string $hire_duration_str * 租赁时长 * @type int $hire_price * 租赁单价 * @type string $order_sn * 订单编号 * @type int $device_hire_source * 租电类型 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\EntOrder::initOnce(); parent::__construct($data); } /** * 设备用途类型. * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE device_use_type = 1; * @return int */ public function getDeviceUseType() { return $this->device_use_type; } /** * 设备用途类型. * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE device_use_type = 1; * @param int $var * @return $this */ public function setDeviceUseType($var) { GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class); $this->device_use_type = $var; return $this; } /** * 租金 分 * * Generated from protobuf field int32 hire_money = 2; * @return int */ public function getHireMoney() { return $this->hire_money; } /** * 租金 分 * * Generated from protobuf field int32 hire_money = 2; * @param int $var * @return $this */ public function setHireMoney($var) { GPBUtil::checkInt32($var); $this->hire_money = $var; return $this; } /** * 租赁时长 * * Generated from protobuf field string hire_duration_str = 3; * @return string */ public function getHireDurationStr() { return $this->hire_duration_str; } /** * 租赁时长 * * Generated from protobuf field string hire_duration_str = 3; * @param string $var * @return $this */ public function setHireDurationStr($var) { GPBUtil::checkString($var, True); $this->hire_duration_str = $var; return $this; } /** * 租赁单价 * * Generated from protobuf field int32 hire_price = 4; * @return int */ public function getHirePrice() { return $this->hire_price; } /** * 租赁单价 * * Generated from protobuf field int32 hire_price = 4; * @param int $var * @return $this */ public function setHirePrice($var) { GPBUtil::checkInt32($var); $this->hire_price = $var; return $this; } /** * 订单编号 * * Generated from protobuf field string order_sn = 5; * @return string */ public function getOrderSn() { return $this->order_sn; } /** * 订单编号 * * Generated from protobuf field string order_sn = 5; * @param string $var * @return $this */ public function setOrderSn($var) { GPBUtil::checkString($var, True); $this->order_sn = $var; return $this; } /** * 租电类型 * * Generated from protobuf field .proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6; * @return int */ public function getDeviceHireSource() { return $this->device_hire_source; } /** * 租电类型 * * Generated from protobuf field .proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6; * @param int $var * @return $this */ public function setDeviceHireSource($var) { GPBUtil::checkEnum($var, \Proto\Api\DEVICE_HIRE_SOURCE::class); $this->device_hire_source = $var; return $this; } }