2009-09-04 20:31:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\Generic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
2009-09-05 02:44:45 +00:00
|
|
|
* @Table(name="decimal_model")
|
2009-09-04 20:31:11 +00:00
|
|
|
*/
|
|
|
|
class DecimalModel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Id @Column(type="integer")
|
|
|
|
* @GeneratedValue(strategy="AUTO")
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
/**
|
2009-11-01 11:09:27 +00:00
|
|
|
* @Column(name="`decimal`", type="decimal", scale=2, precision=5)
|
2009-09-04 20:31:11 +00:00
|
|
|
*/
|
|
|
|
public $decimal;
|
2010-02-26 19:39:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Column(name="`high_scale`", type="decimal", scale=4, precision=14)
|
|
|
|
*/
|
|
|
|
public $highScale;
|
2009-09-04 20:31:11 +00:00
|
|
|
}
|