proto.api.OrderContractDetailReq */ class OrderContractDetailReq extends \Google\Protobuf\Internal\Message { /** * 合同编号 * * Generated from protobuf field string contract_sn = 1; */ protected $contract_sn = ''; /** * 订单类型 * * Generated from protobuf field .proto.api.ORDER_CONTRACT_ORDER_TYPE order_type = 2; */ protected $order_type = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $contract_sn * 合同编号 * @type int $order_type * 订单类型 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\OrderContract::initOnce(); parent::__construct($data); } /** * 合同编号 * * Generated from protobuf field string contract_sn = 1; * @return string */ public function getContractSn() { return $this->contract_sn; } /** * 合同编号 * * Generated from protobuf field string contract_sn = 1; * @param string $var * @return $this */ public function setContractSn($var) { GPBUtil::checkString($var, True); $this->contract_sn = $var; return $this; } /** * 订单类型 * * Generated from protobuf field .proto.api.ORDER_CONTRACT_ORDER_TYPE order_type = 2; * @return int */ public function getOrderType() { return $this->order_type; } /** * 订单类型 * * Generated from protobuf field .proto.api.ORDER_CONTRACT_ORDER_TYPE order_type = 2; * @param int $var * @return $this */ public function setOrderType($var) { GPBUtil::checkEnum($var, \Proto\Api\ORDER_CONTRACT_ORDER_TYPE::class); $this->order_type = $var; return $this; } }