Subversion Repositories SmartDukaan

Rev

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

Rev 31903 Rev 32979
Line 2... Line 2...
2
 
2
 
3
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
3
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
4
 
4
 
5
import javax.persistence.*;
5
import javax.persistence.*;
6
import java.io.Serializable;
6
import java.io.Serializable;
-
 
7
import java.time.LocalDateTime;
7
 
8
 
8
@Entity
9
@Entity
9
@Table(name = "catalog.target_slab")
10
@Table(name = "catalog.target_slab")
10
public class TargetSlabEntity implements Serializable {
11
public class TargetSlabEntity implements Serializable {
11
    @Id
12
    @Id
Line 33... Line 34...
33
    private String targetDescription;
34
    private String targetDescription;
34
 
35
 
35
    @Column(name="payout_value")
36
    @Column(name="payout_value")
36
    private float payoutValue;
37
    private float payoutValue;
37
 
38
 
-
 
39
    public LocalDateTime getStartDate() {
-
 
40
        return startDate;
-
 
41
    }
-
 
42
 
-
 
43
    public void setStartDate(LocalDateTime startDate) {
-
 
44
        this.startDate = startDate;
-
 
45
    }
-
 
46
 
-
 
47
    public LocalDateTime getEndDate() {
-
 
48
        return endDate;
-
 
49
    }
-
 
50
 
-
 
51
    public void setEndDate(LocalDateTime endDate) {
-
 
52
        this.endDate = endDate;
-
 
53
    }
-
 
54
 
-
 
55
    @Column(name="startDate")
-
 
56
    private LocalDateTime startDate;
-
 
57
 
-
 
58
    @Column(name="endDate")
-
 
59
    private LocalDateTime endDate;
-
 
60
 
38
 
61
 
39
    public int getId() {
62
    public int getId() {
40
        return id;
63
        return id;
41
    }
64
    }
42
 
65