| 1 | <?php |
||
| 14 | class PointLog |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @ORM\Id |
||
| 18 | * @ORM\Column(type="integer") |
||
| 19 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 20 | */ |
||
| 21 | protected $id; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return mixed |
||
| 25 | */ |
||
| 26 | public function getId() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param mixed $id |
||
| 33 | */ |
||
| 34 | public function setId($id) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @ORM\Column(name="date", type="datetime") |
||
| 41 | */ |
||
| 42 | public $date; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @ORM\Column(type="bigint") |
||
| 46 | */ |
||
| 47 | public $userId; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @ORM\Column(type="bigint") |
||
| 51 | */ |
||
| 52 | public $gameId; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @ORM\Column(type="integer") |
||
| 56 | */ |
||
| 57 | public $day; |
||
| 58 | /** |
||
| 59 | * @ORM\Column(type="integer") |
||
| 60 | */ |
||
| 61 | public $month; |
||
| 62 | /** |
||
| 63 | * @ORM\Column(type="integer") |
||
| 64 | */ |
||
| 65 | public $year; |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @ORM\Column(type="bigint") |
||
| 69 | */ |
||
| 70 | public $points; |
||
| 71 | } |
||
| 72 |