package com.hz.phis.dt; import java.io.Serializable; import java.util.Date; /** * 基础实体类 */ public class BaseDt implements Serializable { private String id; private Integer isDel; private Date createTime; private Date editTime; public static final int NO = 0; public static final int YES = 1; public BaseDt() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public Integer getIsDel() { return isDel; } public void setIsDel(Integer isDel) { this.isDel = isDel; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Date getEditTime() { return editTime; } public void setEditTime(Date editTime) { this.editTime = editTime; } }