All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.dts.common.domain.store.AlertMessage Maven / Gradle / Ivy

package com.alibaba.dts.common.domain.store;

import java.util.Date;

/**
 * 报警设置
 * @author tianyao.myc
 *
 */
public class AlertMessage {

	/** 主键 */
	private long id;
	
	/** 创建时间 */
	private Date gmtCreate;
	
	/** 修改时间 */
	private Date gmtModified;
	
	/** 联系方式 */
	private String contact;
	
	/** 报警设置信息 */
	private String warningSetup;

	/** 报警信息内容 */
	private String msg;

	/** 报警来源 */
	private int source;

	
	public long getId() {
		return id;
	}

	public void setId(long id) {
		this.id = id;
	}

	public Date getGmtCreate() {
		return gmtCreate;
	}

	public void setGmtCreate(Date gmtCreate) {
		this.gmtCreate = gmtCreate;
	}

	public Date getGmtModified() {
		return gmtModified;
	}

	public void setGmtModified(Date gmtModified) {
		this.gmtModified = gmtModified;
	}


	public String getContact() {
		return contact;
	}

	public void setContact(String contact) {
		this.contact = contact;
	}

	public String getWarningSetup() {
		return warningSetup;
	}

	public void setWarningSetup(String warningSetup) {
		this.warningSetup = warningSetup;
	}

	public String getMsg() {
		return msg;
	}

	public void setMsg(String msg) {
		this.msg = msg;
	}

	public int getSource() {
		return source;
	}

	public void setSource(int source) {
		this.source = source;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy