package org.entity;
/**
 * 一封邮件的对象
 * @说明 
 * @author fei.teng
 * @version 1.0
 * @since
 */
public class MailModel {
	/**
	 * 主键
	 */
	private int id;
	/**
	 * 邮件标题
	 */
	private String title;
	/**
	 * 发送给谁
	 */
	private String to;
	/**
	 * 背景图片地址
	 */
	private String bgPath;
	/**
	 * 抄送给谁
	 */
	private String copy;
	/**
	 * 邮件内容
	 */
	private String context;
	/**
	 * 附件地址
	 */
	private String filePath;
	/**
	 * 背景音乐地址
	 */
	private String musicPath;
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getContext() {
		return context;
	}
	public void setContext(String context) {
		this.context = context;
	}
	public String getFilePath() {
		return filePath;
	}
	public void setFilePath(String filePath) {
		this.filePath = filePath;
	}
	public String getMusicPath() {
		return musicPath;
	}
	public void setMusicPath(String musicPath) {
		this.musicPath = musicPath;
	}
	public String getTo() {
		return to;
	}
	public void setTo(String to) {
		this.to = to;
	}
	public String getCopy() {
		return copy;
	}
	public void setCopy(String copy) {
		this.copy = copy;
	}
	public String getBgPath() {
		return bgPath;
	}
	public void setBgPath(String bgPath) {
		this.bgPath = bgPath;
	}
}