Subversion Repositories SmartDukaan

Rev

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

Rev 28653 Rev 32603
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.transaction;
1
package com.spice.profitmandi.dao.entity.transaction;
2
 
2
 
-
 
3
import javax.persistence.*;
3
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
4
 
5
 
5
import javax.persistence.Column;
-
 
6
import javax.persistence.Entity;
-
 
7
import javax.persistence.GeneratedValue;
-
 
8
import javax.persistence.GenerationType;
-
 
9
import javax.persistence.Id;
-
 
10
import javax.persistence.Table;
-
 
11
 
-
 
12
@Entity
6
@Entity
13
@Table(name="payment.payment", schema = "payment")
7
@Table(name = "payment.payment")
14
public class Payment {
8
public class Payment {
15
 
9
 
16
	@Id
10
	@Id
17
	@Column(name = "id", unique = true, updatable = false)
11
	@Column(name = "id", unique = true, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
12
	@GeneratedValue(strategy = GenerationType.IDENTITY)