View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.auth;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "auth.auth_user", schema = "auth")public class AuthLink {@Id@Column(name = "id", unique=true, updatable=false)@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;}