2009-09-05 00:31:11 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\Generic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
2009-09-05 06:44:45 +04:00
|
|
|
* @Table(name="decimal_model")
|
2009-09-05 00:31:11 +04:00
|
|
|
*/
|
|
|
|
class DecimalModel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Id @Column(type="integer")
|
|
|
|
* @GeneratedValue(strategy="AUTO")
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
/**
|
|
|
|
* @Column(type="decimal", scale=5, precision=2)
|
|
|
|
*/
|
|
|
|
public $decimal;
|
|
|
|
}
|