830cdc2d7bf568328d7cdf345d635a1bd24415ee.svn-base 1.0 KB
package com.espeed.centre.pojo; 

import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
/**
 * 项目名称:	统一验证中心系统
 * 版权所有:  深圳市科飞时速网络技术有限公司(0755-88843776)
 * 技术支持:  info@21gmail.com
 * 单元名称: 	营销邮发件人配置白名单实体类
 * 开始时间:  2018.04.04
 * 开发人员:  陈南巧
 */
@Entity 
@Table(name = "centre_yxysender_domain") 
public class CentreYxySenderDomain implements Serializable { 
	private static final long serialVersionUID = 1L; 
	private Integer id;//主键id
	private String allow_domain;//域名
	@Id 
	@GeneratedValue(strategy=GenerationType.AUTO) 
	public Integer getId() { 
		return id; 
	} 
	public void setId(Integer id) { 
 		this.id = id; 
	}
	public String getAllow_domain() {
		return allow_domain;
	}
	public void setAllow_domain(String allow_domain) {
		this.allow_domain = allow_domain;
	}
 }