Subversion Repositories SmartDukaan

Rev

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

Rev 26958 Rev 31860
Line 32... Line 32...
32
/**
32
/**
33
 * @author amit
33
 * @author amit
34
 *
34
 *
35
 */
35
 */
36
@Entity
36
@Entity
37
@Table(name = "fofo.customer", schema = "fofo")
37
@Table(name = "fofo.customer")
38
@NamedQueries({ @NamedQuery(name = "Customer.selectById", query = "select c from Customer c where c.id= :id") })
38
@NamedQueries({ @NamedQuery(name = "Customer.selectById", query = "select c from Customer c where c.id= :id") })
39
public class Customer implements Serializable {
39
public class Customer implements Serializable {
40
 
40
 
41
	private static final long serialVersionUID = 1L;
41
	private static final long serialVersionUID = 1L;
42
 
42