Subversion Repositories SmartDukaan

Rev

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

Rev 24081 Rev 32603
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.warehouse;
1
package com.spice.profitmandi.dao.entity.warehouse;
2
 
2
 
3
import java.time.LocalDateTime;
-
 
4
import java.util.Date;
-
 
5
 
-
 
6
import javax.persistence.Column;
-
 
7
import javax.persistence.Convert;
-
 
8
import javax.persistence.Converter;
-
 
9
import javax.persistence.Entity;
-
 
10
import javax.persistence.EnumType;
-
 
11
import javax.persistence.Enumerated;
-
 
12
import javax.persistence.GeneratedValue;
-
 
13
import javax.persistence.GenerationType;
-
 
14
import javax.persistence.Id;
-
 
15
import javax.persistence.Table;
-
 
16
 
-
 
17
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
3
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
18
 
-
 
19
import in.shop2020.warehouse.TransferLotStatus;
4
import in.shop2020.warehouse.TransferLotStatus;
-
 
5
 
-
 
6
import javax.persistence.*;
-
 
7
import java.time.LocalDateTime;
20
/**
8
/**
21
 * This class basically contains scheme details
9
 * This class basically contains scheme details
22
 * 
10
 * 
23
 * @author Govind Kumar
11
 * @author Govind Kumar
24
 *
12
 *
25
 */
13
 */
26
@Entity
14
@Entity
27
@Table(name = "warehouse.transferLot", schema = "warehouse")
15
@Table(name = "warehouse.transferLot")
28
public class TransferLot {
16
public class TransferLot {
29
 
17
 
30
	@Id
18
	@Id
31
	@Column(name = "id", unique = true, updatable = false)
19
	@Column(name = "id", unique = true, updatable = false)
32
	@GeneratedValue(strategy = GenerationType.IDENTITY)
20
	@GeneratedValue(strategy = GenerationType.IDENTITY)