1 | <?php |
||
18 | trait PointRateTrait |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | * |
||
23 | * @ORM\Column(name="point_rate", type="decimal", precision=10, scale=0, options={"unsigned":true}, nullable=true) |
||
24 | */ |
||
25 | private $point_rate; |
||
26 | |||
27 | /** |
||
28 | * Set pointRate |
||
29 | * |
||
30 | * @param string $pointRate |
||
31 | * |
||
32 | * @return OrderItem |
||
33 | */ |
||
34 | public function setPointRate($pointRate) |
||
40 | |||
41 | /** |
||
42 | * Get pointRate |
||
43 | * |
||
44 | * @return string |
||
45 | */ |
||
46 | 193 | public function getPointRate() |
|
50 | } |
||
51 |