Subversion Repositories SmartDukaan

Rev

Rev 31618 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31618 Rev 31706
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;
3
import com.spice.profitmandi.dao.convertor.LocalDateAttributeConverter;
4
import javax.persistence.Entity;
-
 
-
 
4
 
5
import javax.persistence.Id;
5
import javax.persistence.*;
6
import javax.persistence.Table;
-
 
7
import java.time.LocalDate;
6
import java.time.LocalDate;
8
import java.util.Objects;
7
import java.util.Objects;
9
 
8
 
10
@Entity
9
@Entity
11
@Table(name="fofo.samsung_pcm",schema="fofo")
10
@Table(name="fofo.samsung_pcm",schema="fofo")
12
public class SamsungPCM {
11
public class SamsungPCM {
13
    @Id
12
    @Id
14
    @Column(name="fofo_id")
13
    @Column(name="fofo_id")
15
    private int fofoId;
14
    private int fofoId;
16
 
15
 
-
 
16
    @Convert(converter = LocalDateAttributeConverter.class)
17
    @Column(name="pcm_date")
17
    @Column(name = "pcm_date")
18
    private LocalDate pcmDate;
18
    private LocalDate pcmDate;
19
 
19
 
20
    public int getFofoId() {
20
    public int getFofoId() {
21
        return fofoId;
21
        return fofoId;
22
    }
22
    }