package com.flow.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@TableName("tb_duanxinlog")
|
public class Duanxinlog {
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
private String receiver;
|
|
private String number;
|
|
private String content;
|
|
private String dispatchdate;
|
|
private String none;
|
public Duanxinlog() {
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getReceiver() {
|
return receiver;
|
}
|
|
public void setReceiver(String receiver) {
|
this.receiver = receiver;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getDispatchdate() {
|
return dispatchdate;
|
}
|
|
public void setDispatchdate(String dispatchdate) {
|
this.dispatchdate = dispatchdate;
|
}
|
|
public String getNone() {
|
return none;
|
}
|
|
public void setNone(String none) {
|
this.none = none;
|
}
|
}
|