Subversion Repositories SmartDukaan

Rev

Rev 22352 | Rev 22845 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22352 Rev 22580
Line 21... Line 21...
21
 * This is used to store information of end user.
21
 * This is used to store information of end user.
22
 * @author ashikali
22
 * @author ashikali
23
 *
23
 *
24
 */
24
 */
25
@Entity
25
@Entity
26
@Table(name="dtr.users", schema = "dtr",uniqueConstraints = {@UniqueConstraint(columnNames = {"email","mobile_number"})})
26
@Table(name="dtr.users", uniqueConstraints = {@UniqueConstraint(columnNames = {"email","mobile_number"})})
27
public class User implements Serializable{
27
public class User implements Serializable{
28
	
28
	
29
	
29
	
30
	private static final long serialVersionUID = 1L;
30
	private static final long serialVersionUID = 1L;
31
 
31