package com.example.jz.modle.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* (Cause)实体类
|
*
|
* @author makejava
|
* @since 2022-07-12 16:50:57
|
*/
|
public class Cause implements Serializable {
|
private static final long serialVersionUID = 944957375480792530L;
|
/**
|
* 案件ID
|
*/
|
private Integer id;
|
/**
|
* 头像地址
|
*/
|
private String pic;
|
/**
|
* 报案人
|
*/
|
private String reporter;
|
/**
|
* 报案人手机号
|
*/
|
private String mobile;
|
/**
|
* 报案人身份证号
|
*/
|
private String idcard;
|
/**
|
* 是否代办 Y(代办) N(不是代办)
|
*/
|
private String isCommission;
|
/**
|
* 涉案金额
|
*/
|
private String amountInvolved;
|
/**
|
* 报案材料图片地址 多个用,分隔
|
*/
|
private String reportMaterials;
|
/**
|
* 报案时间
|
*/
|
private Date reportTime;
|
/**
|
* 报案方式
|
*/
|
private String reportMethod;
|
/**
|
* 创建人id
|
*/
|
private Integer creator;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getPic() {
|
return pic;
|
}
|
|
public void setPic(String pic) {
|
this.pic = pic;
|
}
|
|
public String getReporter() {
|
return reporter;
|
}
|
|
public void setReporter(String reporter) {
|
this.reporter = reporter;
|
}
|
|
public String getMobile() {
|
return mobile;
|
}
|
|
public void setMobile(String mobile) {
|
this.mobile = mobile;
|
}
|
|
public String getIdcard() {
|
return idcard;
|
}
|
|
public void setIdcard(String idcard) {
|
this.idcard = idcard;
|
}
|
|
public String getIsCommission() {
|
return isCommission;
|
}
|
|
public void setIsCommission(String isCommission) {
|
this.isCommission = isCommission;
|
}
|
|
public String getAmountInvolved() {
|
return amountInvolved;
|
}
|
|
public void setAmountInvolved(String amountInvolved) {
|
this.amountInvolved = amountInvolved;
|
}
|
|
public String getReportMaterials() {
|
return reportMaterials;
|
}
|
|
public void setReportMaterials(String reportMaterials) {
|
this.reportMaterials = reportMaterials;
|
}
|
|
public Date getReportTime() {
|
return reportTime;
|
}
|
|
public void setReportTime(Date reportTime) {
|
this.reportTime = reportTime;
|
}
|
|
public String getReportMethod() {
|
return reportMethod;
|
}
|
|
public void setReportMethod(String reportMethod) {
|
this.reportMethod = reportMethod;
|
}
|
|
public Integer getCreator() {
|
return creator;
|
}
|
|
public void setCreator(Integer creator) {
|
this.creator = creator;
|
}
|
|
}
|