You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
j2ee1/src/main/java/com/entity/model/ChatModel.java

112 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.entity.model;
import com.entity.ChatEntity;
import com.baomidou.mybatisplus.annotations.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
/**
* 在线咨询
* 接收传参的实体类
* @author
* @email
* @date 2023-02-21 09:46:06
*/
public class ChatModel implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 管理员id
*/
private Long adminid;
/**
* 提问
*/
private String ask;
/**
* 回复
*/
private String reply;
/**
* 是否回复
*/
private Integer isreply;
/**
* 设置管理员id
*/
public void setAdminid(Long adminid) {
this.adminid = adminid;
}
/**
* 获取管理员id
*/
public Long getAdminid() {
return adminid;
}
/**
* 设置:提问
*/
public void setAsk(String ask) {
this.ask = ask;
}
/**
* 获取:提问
*/
public String getAsk() {
return ask;
}
/**
* 设置:回复
*/
public void setReply(String reply) {
this.reply = reply;
}
/**
* 获取:回复
*/
public String getReply() {
return reply;
}
/**
* 设置:是否回复
*/
public void setIsreply(Integer isreply) {
this.isreply = isreply;
}
/**
* 获取:是否回复
*/
public Integer getIsreply() {
return isreply;
}
}