Subversion Repositories SmartDukaan

Rev

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

Rev 29035 Rev 29381
Line 5... Line 5...
5
import javax.persistence.GeneratedValue;
5
import javax.persistence.GeneratedValue;
6
import javax.persistence.GenerationType;
6
import javax.persistence.GenerationType;
7
import javax.persistence.Id;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
8
import javax.persistence.Table;
9
 
9
 
-
 
10
import com.spice.profitmandi.common.util.Utils.Attachment;
-
 
11
 
10
@Entity
12
@Entity
11
@Table(name = "user.onboarding_email", schema = "user")
13
@Table(name = "user.onboarding_email", schema = "user")
12
public class OnboardingEmail {
14
public class OnboardingEmail {
13
	@Id
15
	@Id
14
	@Column(name = "id", unique = true, updatable = false)
16
	@Column(name = "id", unique = true, updatable = false)
Line 37... Line 39...
37
	private String[] cc;
39
	private String[] cc;
38
 
40
 
39
	@Column(name = "bcc")
41
	@Column(name = "bcc")
40
	private String[] bcc;
42
	private String[] bcc;
41
 
43
 
-
 
44
	@Column(name = "attachment")
-
 
45
	private String attachment;
-
 
46
 
-
 
47
	public String getAttachment() {
-
 
48
		return attachment;
-
 
49
	}
-
 
50
 
-
 
51
	public void setAttachment(String attachment) {
-
 
52
		this.attachment = attachment;
-
 
53
	}
-
 
54
 
42
	public int getId() {
55
	public int getId() {
43
		return id;
56
		return id;
44
	}
57
	}
45
 
58
 
46
	public int getOnboardingId() {
59
	public int getOnboardingId() {