Subversion Repositories SmartDukaan

Rev

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

Rev 32737 Rev 32795
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.fofo;
1
package com.spice.profitmandi.dao.entity.fofo;
2
 
2
 
3
import javax.persistence.Column;
-
 
4
import javax.persistence.Entity;
-
 
5
import javax.persistence.Id;
3
import javax.persistence.*;
6
import javax.persistence.Table;
-
 
7
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
8
 
5
 
9
 
6
 
10
@Entity
7
@Entity
11
@Table(name = "fofo.retailer_contacts")
8
@Table(name = "fofo.retailer_contact")
12
public class RetailerContact {
9
public class RetailerContact {
13
    @Id
10
    @Id
-
 
11
    @GeneratedValue(strategy = GenerationType.IDENTITY)
14
    @Column(name = "id")
12
    @Column
15
    private int id;
13
    private int id;
16
 
14
 
17
    @Column
15
    @Column
18
    private int fofoId;
16
    private int fofoId;
19
 
17