Subversion Repositories SmartDukaan

Rev

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

Rev 24917 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
import java.time.format.DateTimeFormatter;
5
import java.time.format.DateTimeFormatter;
5
 
6
 
6
import javax.persistence.Column;
-
 
7
import javax.persistence.Entity;
-
 
8
import javax.persistence.GeneratedValue;
-
 
9
import javax.persistence.GenerationType;
-
 
10
import javax.persistence.Id;
-
 
11
import javax.persistence.Table;
-
 
12
 
-
 
13
@Entity
7
@Entity
14
@Table(name = "transaction.notify_items", schema = "transaction")
8
@Table(name = "transaction.notify_items")
15
public class NotifyItem {
9
public class NotifyItem {
16
 
10
 
17
	@Id
11
	@Id
18
	@Column(name = "id", unique = true, updatable = false)
12
	@Column(name = "id", unique = true, updatable = false)
19
	@GeneratedValue(strategy = GenerationType.IDENTITY)
13
	@GeneratedValue(strategy = GenerationType.IDENTITY)