Subversion Repositories SmartDukaan

Rev

Rev 24421 | Rev 24428 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24421 Rev 24423
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.user;
1
package com.spice.profitmandi.dao.entity.user;
2
 
2
 
-
 
3
import java.io.Serializable;
3
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
4
 
5
 
5
import javax.persistence.Column;
6
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.Entity;
7
import javax.persistence.Id;
8
import javax.persistence.Id;
Line 14... Line 15...
14
 *
15
 *
15
 */
16
 */
16
@Entity
17
@Entity
17
@Table(name="user.line", schema = "user")
18
@Table(name="user.line", schema = "user")
18
 
19
 
19
public class CartLine {
20
public class CartLine implements Serializable {
20
	@Id
21
	@Id
21
	@Column(name="cart_id")
22
	@Column(name="cart_id")
22
	private int cartId;
23
	private int cartId;
23
	@Id
24
	@Id
24
	@Column(name="item_id")
25
	@Column(name="item_id")