Subversion Repositories SmartDukaan

Rev

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

Rev 26105 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 java.time.LocalDateTime;
-
 
4
 
-
 
5
import javax.persistence.Column;
-
 
6
import javax.persistence.Entity;
-
 
7
import javax.persistence.EnumType;
-
 
8
import javax.persistence.Enumerated;
-
 
9
import javax.persistence.GeneratedValue;
-
 
10
import javax.persistence.GenerationType;
-
 
11
import javax.persistence.Id;
-
 
12
import javax.persistence.Table;
-
 
13
 
-
 
14
import com.spice.profitmandi.dao.repository.inventory.NotifyStatus;
3
import com.spice.profitmandi.dao.repository.inventory.NotifyStatus;
15
 
4
 
-
 
5
import javax.persistence.*;
-
 
6
import java.time.LocalDateTime;
-
 
7
 
16
@Entity
8
@Entity
17
@Table(name = "transaction.notify_orders", schema = "transaction")
9
@Table(name = "transaction.notify_orders")
18
public class NotifyOrder {
10
public class NotifyOrder {
19
	@Id
11
	@Id
20
	@Column(name = "id", unique = true, updatable = false)
12
	@Column(name = "id", unique = true, updatable = false)
21
	@GeneratedValue(strategy = GenerationType.IDENTITY)
13
	@GeneratedValue(strategy = GenerationType.IDENTITY)
22
	private int id;
14
	private int id;