source: pro-violet-viettel/sourcecode/application/models/Entities/Tblcollaborator.php @ 345

Last change on this file since 345 was 345, checked in by quyenla, 11 years ago

collaborator page

File size: 3.8 KB
Line 
1<?php
2
3namespace Entities;
4
5use Doctrine\ORM\Mapping as ORM;
6
7/**
8 * Entities\Tblcollaborator
9 */
10class Tblcollaborator
11{
12    /**
13     * @var integer $id
14     */
15    private $id;
16
17    /**
18     * @var string $full_name
19     */
20    private $full_name;
21
22    /**
23     * @var string $login_name
24     */
25    private $login_name;
26
27    /**
28     * @var string $cellphone
29     */
30    private $cellphone;
31
32    /**
33     * @var string $passwd
34     */
35    private $passwd;
36
37    /**
38     * @var integer $activated
39     */
40    private $activated;
41
42    /**
43     * @var string $created_time
44     */
45    private $created_time;
46
47    /**
48     * @var string $updated_time
49     */
50    private $updated_time;
51
52    /**
53     * @var integer $author
54     */
55    private $author;
56
57
58    /**
59     * Get id
60     *
61     * @return integer
62     */
63    public function getId()
64    {
65        return $this->id;
66    }
67
68    /**
69     * Set full_name
70     *
71     * @param string $fullName
72     * @return Tblcollaborator
73     */
74    public function setFullName($fullName)
75    {
76        $this->full_name = $fullName;
77        return $this;
78    }
79
80    /**
81     * Get full_name
82     *
83     * @return string
84     */
85    public function getFullName()
86    {
87        return $this->full_name;
88    }
89
90    /**
91     * Set login_name
92     *
93     * @param string $loginName
94     * @return Tblcollaborator
95     */
96    public function setLoginName($loginName)
97    {
98        $this->login_name = $loginName;
99        return $this;
100    }
101
102    /**
103     * Get login_name
104     *
105     * @return string
106     */
107    public function getLoginName()
108    {
109        return $this->login_name;
110    }
111
112    /**
113     * Set cellphone
114     *
115     * @param string $cellphone
116     * @return Tblcollaborator
117     */
118    public function setCellphone($cellphone)
119    {
120        $this->cellphone = $cellphone;
121        return $this;
122    }
123
124    /**
125     * Get cellphone
126     *
127     * @return string
128     */
129    public function getCellphone()
130    {
131        return $this->cellphone;
132    }
133
134    /**
135     * Set passwd
136     *
137     * @param string $passwd
138     * @return Tblcollaborator
139     */
140    public function setPasswd($passwd)
141    {
142        $this->passwd = $passwd;
143        return $this;
144    }
145
146    /**
147     * Get passwd
148     *
149     * @return string
150     */
151    public function getPasswd()
152    {
153        return $this->passwd;
154    }
155
156    /**
157     * Set activated
158     *
159     * @param integer $activated
160     * @return Tblcollaborator
161     */
162    public function setActivated($activated)
163    {
164        $this->activated = $activated;
165        return $this;
166    }
167
168    /**
169     * Get activated
170     *
171     * @return integer
172     */
173    public function getActivated()
174    {
175        return $this->activated;
176    }
177
178    /**
179     * Set created_time
180     *
181     * @param string $createdTime
182     * @return Tblcollaborator
183     */
184    public function setCreatedTime($createdTime)
185    {
186        $this->created_time = $createdTime;
187        return $this;
188    }
189
190    /**
191     * Get created_time
192     *
193     * @return string
194     */
195    public function getCreatedTime()
196    {
197        return $this->created_time;
198    }
199
200    /**
201     * Set updated_time
202     *
203     * @param string $updatedTime
204     * @return Tblcollaborator
205     */
206    public function setUpdatedTime($updatedTime)
207    {
208        $this->updated_time = $updatedTime;
209        return $this;
210    }
211
212    /**
213     * Get updated_time
214     *
215     * @return string
216     */
217    public function getUpdatedTime()
218    {
219        return $this->updated_time;
220    }
221
222    /**
223     * Set author
224     *
225     * @param integer $author
226     * @return Tblcollaborator
227     */
228    public function setAuthor($author)
229    {
230        $this->author = $author;
231        return $this;
232    }
233
234    /**
235     * Get author
236     *
237     * @return integer
238     */
239    public function getAuthor()
240    {
241        return $this->author;
242    }
243}
Note: See TracBrowser for help on using the repository browser.