package com.dy.pipIrrGlobal.pojoSe;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-10-29 16:53
|
* @LastEditTime 2024-10-29 16:53
|
* @Description 问题上报实体类
|
*/
|
|
@TableName(value="se_virtual_card", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class SeIssueReport {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 反馈内容
|
*/
|
private String content;
|
|
/**
|
* 照片列表
|
*/
|
private String images;
|
|
/**
|
* 音频列表
|
*/
|
private String audios;
|
|
/**
|
* 视频列表
|
*/
|
private String videos;
|
|
/**
|
* 经度
|
*/
|
private BigDecimal lng;
|
|
/**
|
* 纬度
|
*/
|
private BigDecimal lat;
|
|
/**
|
* 农户ID
|
*/
|
private Long clientId;
|
|
/**
|
* 上报时间
|
*/
|
private Date reportTime;
|
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
|
/**
|
* 状态;1-未受理,2-已受理,3已删除
|
*/
|
private Byte state;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getImages() {
|
return images;
|
}
|
|
public void setImages(String images) {
|
this.images = images;
|
}
|
|
public String getAudios() {
|
return audios;
|
}
|
|
public void setAudios(String audios) {
|
this.audios = audios;
|
}
|
|
public String getVideos() {
|
return videos;
|
}
|
|
public void setVideos(String videos) {
|
this.videos = videos;
|
}
|
|
public BigDecimal getLng() {
|
return lng;
|
}
|
|
public void setLng(BigDecimal lng) {
|
this.lng = lng;
|
}
|
|
public BigDecimal getLat() {
|
return lat;
|
}
|
|
public void setLat(BigDecimal lat) {
|
this.lat = lat;
|
}
|
|
public Long getClientId() {
|
return clientId;
|
}
|
|
public void setClientId(Long clientId) {
|
this.clientId = clientId;
|
}
|
|
public Date getReportTime() {
|
return reportTime;
|
}
|
|
public void setReportTime(Date reportTime) {
|
this.reportTime = reportTime;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Byte getState() {
|
return state;
|
}
|
|
public void setState(Byte state) {
|
this.state = state;
|
}
|
}
|