Skip to content

Instantly share code, notes, and snippets.

@azumamagus
Created March 25, 2019 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azumamagus/52e2ba64da8426f59e6c33d1ca4c1d8d to your computer and use it in GitHub Desktop.
Save azumamagus/52e2ba64da8426f59e6c33d1ca4c1d8d to your computer and use it in GitHub Desktop.
<?php
/**
* Created by PhpStorm.
* User: Bruno
* Date: 25/03/2019
* Time: 10:48
*/
namespace App\Entidades;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity()
*/
class Medico
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
public $id;
/**
* @ORM\Column(type="integer")
*/
public $crm;
/**
* @ORM\Column(type="string")
*/
public $nome;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment