Subversion Repositories SmartDukaan

Rev

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

Rev 26031 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 = "transaction.notify_cancel", schema = "transaction")
7
@Table(name = "transaction.notify_cancel")
14
public class NotifyCancel {
8
public class NotifyCancel {
15
	@Id
9
	@Id
16
	@Column(name = "id", unique = true, updatable = false)
10
	@Column(name = "id", unique = true, updatable = false)
17
	@GeneratedValue(strategy = GenerationType.IDENTITY)
11
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	private int id;
12
	private int id;