Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Entity/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
namespace Application\Entity;
/**
* Description of Devise
*
* @author jimmy
*/
class CoursCrypto {
/**
* @ORM\Id
* @ORM\Column(type="integer", name="id");
* @ORM\GeneratedValue(strategy="AUTO")
*/
public $id;
/**
* @ORM\ManyToOne(targetEntity="\User\Entity\Crypto", inversedBy="cours")
* @ORM\JoinColumn(nullable=false)
*/
public $crypto;
/**
* Cours en Euro
* @ORM\Column(type="decimal", precision=20, scale=8, name="cours_euro")
*/
public $coursEuro;
/**
* @ORM\Column(type="datetime", name="date_cours")
*/
public $dateCours;
}