package com.yeshi.fanli.entity.customerservice;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 小程序客服咨询记录
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_customer_service_wxxcx_history")
|
public class CustomerServiceWXXCXHistory {
|
@Column(name = "cswh_id")
|
private Long id;
|
@Column(name = "cswh_uid")
|
private Long uid;
|
@Column(name = "cswh_device")
|
private String device;
|
@Column(name = "cswh_device_type")
|
private String deviceType;
|
@Column(name = "cswh_version")
|
private String version;
|
@Column(name = "cswh_os_version")
|
private String osVersion;
|
@Column(name = "cswh_network")
|
private String network;
|
@Column(name = "cswh_channel")
|
private String channel;
|
@Column(name = "cswh_createtime")
|
private Date createTime;
|
@Column(name = "cswh_updatetime")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getDeviceType() {
|
return deviceType;
|
}
|
|
public void setDeviceType(String deviceType) {
|
this.deviceType = deviceType;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getOsVersion() {
|
return osVersion;
|
}
|
|
public void setOsVersion(String osVersion) {
|
this.osVersion = osVersion;
|
}
|
|
public String getNetwork() {
|
return network;
|
}
|
|
public void setNetwork(String network) {
|
this.network = network;
|
}
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
}
|