Guest User

Untitled

a guest
Apr 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. /**
  2.  * @Entity
  3.  */
  4. class User
  5. {
  6.     /**
  7.      * @Id
  8.      * @Column(type=”integer”)
  9.      * @GeneratedValue
  10.      */
  11.     protected $id = null;
  12.  
  13.     /**
  14.      * @Column(type=”string”, length=100)
  15.      */
  16.     protected $userName = null;
  17.  
  18.     /**
  19.      * @Column(type=”string”)
  20.      */
  21.     protected $email = null;
  22. }
Add Comment
Please, Sign In to add comment