| | |
| | | package com.yeshi.fanli.entity.customerservice;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import com.yeshi.fanli.entity.AppInfo;
|
| | | import com.yeshi.fanli.entity.DeviceInfo;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 用户咨询的历史消息
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_customer_service_history")
|
| | | public class CustomerServiceHistory {
|
| | | @Column(name = "csh_id")
|
| | | private Long id;
|
| | | @Column(name = "csh_device")
|
| | | private String device;// 设备唯一标识
|
| | | @Column(name = "csh_platform")
|
| | | private String platform;// 平台 android ios
|
| | | private AppInfo appInfo;// 应用信息
|
| | | private DeviceInfo deviceInfo;// 设备信息
|
| | | @Column(name = "csh_content")
|
| | | private String content;// 内容
|
| | | @Column(name = "csh_createtime")
|
| | | private Date createTime;// 创建时间
|
| | | @Column(name = "csh_updatetime")
|
| | | private Date updateTime;// 更新时间
|
| | | @Column(name = "csh_app_info")
|
| | | private String appInfoStr;// 应用信息json
|
| | | @Column(name = "csh_device_info")
|
| | | private String deviceInfoStr;// 设备信息json
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public String getDevice() {
|
| | | return device;
|
| | | }
|
| | |
|
| | | public void setDevice(String device) {
|
| | | this.device = device;
|
| | | }
|
| | |
|
| | | public String getPlatform() {
|
| | | return platform;
|
| | | }
|
| | |
|
| | | public void setPlatform(String platform) {
|
| | | this.platform = platform;
|
| | | }
|
| | |
|
| | | public AppInfo getAppInfo() {
|
| | | return appInfo;
|
| | | }
|
| | |
|
| | | public void setAppInfo(AppInfo appInfo) {
|
| | | this.appInfo = appInfo;
|
| | | }
|
| | |
|
| | | public DeviceInfo getDeviceInfo() {
|
| | | return deviceInfo;
|
| | | }
|
| | |
|
| | | public void setDeviceInfo(DeviceInfo deviceInfo) {
|
| | | this.deviceInfo = deviceInfo;
|
| | | }
|
| | |
|
| | | public String getContent() {
|
| | | return content;
|
| | | }
|
| | |
|
| | | public void setContent(String content) {
|
| | | this.content = content;
|
| | | }
|
| | |
|
| | | 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;
|
| | | }
|
| | |
|
| | | public String getAppInfoStr() {
|
| | | return appInfoStr;
|
| | | }
|
| | |
|
| | | public void setAppInfoStr(String appInfoStr) {
|
| | | this.appInfoStr = appInfoStr;
|
| | | }
|
| | |
|
| | | public String getDeviceInfoStr() {
|
| | | return deviceInfoStr;
|
| | | }
|
| | |
|
| | | public void setDeviceInfoStr(String deviceInfoStr) {
|
| | | this.deviceInfoStr = deviceInfoStr;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.customerservice; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.yeshi.fanli.entity.AppInfo; |
| | | import com.yeshi.fanli.entity.DeviceInfo; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 用户咨询的历史消息 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_customer_service_history") |
| | | public class CustomerServiceHistory { |
| | | @Column(name = "csh_id") |
| | | private Long id; |
| | | @Column(name = "csh_device") |
| | | private String device;// 设备唯一标识 |
| | | @Column(name = "csh_platform") |
| | | private String platform;// 平台 android ios |
| | | private AppInfo appInfo;// 应用信息 |
| | | private DeviceInfo deviceInfo;// 设备信息 |
| | | @Column(name = "csh_content") |
| | | private String content;// 内容 |
| | | @Column(name = "csh_createtime") |
| | | private Date createTime;// 创建时间 |
| | | @Column(name = "csh_updatetime") |
| | | private Date updateTime;// 更新时间 |
| | | @Column(name = "csh_app_info") |
| | | private String appInfoStr;// 应用信息json |
| | | @Column(name = "csh_device_info") |
| | | private String deviceInfoStr;// 设备信息json |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getDevice() { |
| | | return device; |
| | | } |
| | | |
| | | public void setDevice(String device) { |
| | | this.device = device; |
| | | } |
| | | |
| | | public String getPlatform() { |
| | | return platform; |
| | | } |
| | | |
| | | public void setPlatform(String platform) { |
| | | this.platform = platform; |
| | | } |
| | | |
| | | public AppInfo getAppInfo() { |
| | | return appInfo; |
| | | } |
| | | |
| | | public void setAppInfo(AppInfo appInfo) { |
| | | this.appInfo = appInfo; |
| | | } |
| | | |
| | | public DeviceInfo getDeviceInfo() { |
| | | return deviceInfo; |
| | | } |
| | | |
| | | public void setDeviceInfo(DeviceInfo deviceInfo) { |
| | | this.deviceInfo = deviceInfo; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | public String getAppInfoStr() { |
| | | return appInfoStr; |
| | | } |
| | | |
| | | public void setAppInfoStr(String appInfoStr) { |
| | | this.appInfoStr = appInfoStr; |
| | | } |
| | | |
| | | public String getDeviceInfoStr() { |
| | | return deviceInfoStr; |
| | | } |
| | | |
| | | public void setDeviceInfoStr(String deviceInfoStr) { |
| | | this.deviceInfoStr = deviceInfoStr; |
| | | } |
| | | } |