Subversion Repositories SmartDukaan

Rev

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

Rev 31860 Rev 36064
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.user;
1
package com.spice.profitmandi.dao.entity.user;
2
 
2
 
3
import javax.persistence.Column;
-
 
4
import javax.persistence.Entity;
-
 
5
import javax.persistence.GeneratedValue;
-
 
6
import javax.persistence.GenerationType;
-
 
7
import javax.persistence.Id;
3
import javax.persistence.*;
8
import javax.persistence.Table;
-
 
9
 
-
 
10
import com.spice.profitmandi.common.util.Utils.Attachment;
-
 
11
 
4
 
12
@Entity
5
@Entity
13
@Table(name = "user.onboarding_email")
6
@Table(name = "user.onboarding_email")
14
public class OnboardingEmail {
7
public class OnboardingEmail {
15
	@Id
8
	@Id
Line 39... Line 32...
39
	private String[] cc;
32
	private String[] cc;
40
 
33
 
41
	@Column(name = "bcc")
34
	@Column(name = "bcc")
42
	private String[] bcc;
35
	private String[] bcc;
43
 
36
 
-
 
37
	@Column(name = "retry_count")
-
 
38
	private int retryCount = 0;
-
 
39
 
44
	@Column(name = "attachment")
40
	@Column(name = "attachment")
45
	private byte[] attachment;
41
	private byte[] attachment;
46
 
42
 
-
 
43
	public int getRetryCount() {
-
 
44
		return retryCount;
-
 
45
	}
-
 
46
 
-
 
47
	public void setRetryCount(int retryCount) {
-
 
48
		this.retryCount = retryCount;
-
 
49
	}
-
 
50
 
47
	public byte[] getAttachment() {
51
	public byte[] getAttachment() {
48
		return attachment;
52
		return attachment;
49
	}
53
	}
50
 
54
 
51
	public void setAttachment(byte[] attachment) {
55
	public void setAttachment(byte[] attachment) {