<?phpnamespace CoreBundle\Entity;use CoreBundle\Entity\Vehicles\Vehicle;use DateTime;/** * VehicleEstimate */class VehicleEstimate{ /** * @var integer */ private $id; /** * @var DateTime */ private $date_create; /** * @var string */ private $email; /** * @var string */ private $name; /** * @var string */ private $phone; /** * @var string */ private $hash; /** * @var string */ private $data; /** * @var integer */ private $is_finish; /** * @var string */ private $crm_lead_id; /** * @var integer */ private $crm_state; /** * @var integer */ private $is_send; /** * @var Forms */ private $form; /** * @var Dealer */ private $dealer; /** * @var Vehicle */ private $vehicle; /** * @var User */ private $user; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set dateCreate * * @param DateTime $dateCreate * * @return VehicleEstimate */ public function setDateCreate($dateCreate) { $this->date_create = $dateCreate; return $this; } /** * Get dateCreate * * @return DateTime */ public function getDateCreate() { return $this->date_create; } /** * Set email * * @param string $email * * @return VehicleEstimate */ public function setEmail($email) { $this->email = $email; return $this; } /** * Get email * * @return string */ public function getEmail() { return $this->email; } /** * Set name * * @param string $name * * @return VehicleEstimate */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set phone * * @param string $phone * * @return VehicleEstimate */ public function setPhone($phone) { $this->phone = $phone; return $this; } /** * Get phone * * @return string */ public function getPhone() { return $this->phone; } /** * Set hash * * @param string $hash * * @return VehicleEstimate */ public function setHash($hash) { $this->hash = $hash; return $this; } /** * Get hash * * @return string */ public function getHash() { return $this->hash; } /** * Set data * * @param string $data * * @return VehicleEstimate */ public function setData($data) { $this->data = $data; return $this; } /** * Get data * * @return string */ public function getData() { return $this->data; } /** * Set isFinish * * @param integer $isFinish * * @return VehicleEstimate */ public function setIsFinish($isFinish) { $this->is_finish = $isFinish; return $this; } /** * Get isFinish * * @return integer */ public function getIsFinish() { return $this->is_finish; } /** * Set crmLeadId * * @param string $crmLeadId * * @return VehicleEstimate */ public function setCrmLeadId($crmLeadId) { $this->crm_lead_id = $crmLeadId; return $this; } /** * Get crmLeadId * * @return string */ public function getCrmLeadId() { return $this->crm_lead_id; } /** * Set crmState * * @param integer $crmState * * @return VehicleEstimate */ public function setCrmState($crmState) { $this->crm_state = $crmState; return $this; } /** * Get crmState * * @return integer */ public function getCrmState() { return $this->crm_state; } /** * Set isSend * * @param integer $isSend * * @return VehicleEstimate */ public function setIsSend($isSend) { $this->is_send = $isSend; return $this; } /** * Get isSend * * @return integer */ public function getIsSend() { return $this->is_send; } /** * Set form * * @param Forms $form * * @return VehicleEstimate */ public function setForm(Forms $form = null) { $this->form = $form; return $this; } /** * Get form * * @return Forms */ public function getForm() { return $this->form; } /** * Set dealer * * @param Dealer $dealer * * @return VehicleEstimate */ public function setDealer(Dealer $dealer = null) { $this->dealer = $dealer; return $this; } /** * Get dealer * * @return Dealer */ public function getDealer() { return $this->dealer; } /** * Set vehicle * * @param Vehicle $vehicle * * @return VehicleEstimate */ public function setVehicle(Vehicle $vehicle = null) { $this->vehicle = $vehicle; return $this; } /** * Get vehicle * * @return Vehicle */ public function getVehicle() { return $this->vehicle; } /** * Set user * * @param User $user * * @return VehicleEstimate */ public function setUser(User $user = null) { $this->user = $user; return $this; } /** * Get user * * @return User */ public function getUser() { return $this->user; } /** * @var integer */ private $is_select; /** * Set isSelect * * @param integer $isSelect * * @return VehicleEstimate */ public function setIsSelect($isSelect) { $this->is_select = $isSelect; return $this; } /** * @var UserCar */ private $user_car; /** * Set userCar * * @param UserCar $userCar * * @return VehicleEstimate */ public function setUserCar(UserCar $userCar = null) { $this->user_car = $userCar; return $this; } /** * Get isSelect * * @return integer */ public function getIsSelect() { return $this->is_select; } /** * Get userCar * * @return UserCar */ public function getUserCar() { return $this->user_car; } /** * @var string */ private $utm; /** * @var string */ private $referrer; /** * @var string */ private $href; /** * Set utm * * @param string $utm * * @return VehicleEstimate */ public function setUtm($utm) { $this->utm = $utm; return $this; } /** * Get utm * * @return string */ public function getUtm() { return $this->utm; } /** * Set referrer * * @param string $referrer * * @return VehicleEstimate */ public function setReferrer($referrer) { $this->referrer = $referrer; return $this; } /** * Get referrer * * @return string */ public function getReferrer() { return $this->referrer; } /** * Set href * * @param string $href * * @return VehicleEstimate */ public function setHref($href) { $this->href = $href; return $this; } /** * Get href * * @return string */ public function getHref() { return $this->href; } /** * @var string */ private $gcl_id; /** * Set gclId * * @param string $gclId * * @return VehicleEstimate */ public function setGclId($gclId) { $this->gcl_id = $gclId; return $this; } /** * Get gclId * * @return string */ public function getGclId() { return $this->gcl_id; }}