package cn.com.basic.face.discern.calling.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class calling implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private Date calldt;
|
|
private Integer callerpersonid;
|
|
private Integer calleepersonid;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getCalldt() {
|
return calldt;
|
}
|
|
public void setCalldt(Date calldt) {
|
this.calldt = calldt;
|
}
|
|
public Integer getCallerpersonid() {
|
return callerpersonid;
|
}
|
|
public void setCallerpersonid(Integer callerpersonid) {
|
this.callerpersonid = callerpersonid;
|
}
|
|
public Integer getCalleepersonid() {
|
return calleepersonid;
|
}
|
|
public void setCalleepersonid(Integer calleepersonid) {
|
this.calleepersonid = calleepersonid;
|
}
|
}
|