| | |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | * @since 2022-07-13 11:52:58 |
| | | */ |
| | | @TableName("qyjz.report") |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Report extends Model<Report> { |
| | | //案件ID |
| | | private Integer id; |
| | |
| | | //是否代办 1(代办) 0(不是代办) |
| | | private String isCommission; |
| | | //涉案金额 |
| | | private String amountInvolved; |
| | | private Double amountInvolved; |
| | | //报案材料图片地址 多个用,分隔 |
| | | private String reportMaterials; |
| | | //报案时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date reportTime; |
| | | //报案方式 |
| | | private String reportMethod; |
| | |
| | | //状态,1为通过 0为未审核 |
| | | private Integer status; |
| | | //创建时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date ctime; |
| | | //被骗时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date cheatTime; |
| | | //补充信息 |
| | | private String information; |
| | | |
| | | |
| | | 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 Integer getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(Integer userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public Date getCtime() { |
| | | return ctime; |
| | | } |
| | | |
| | | public void setCtime(Date ctime) { |
| | | this.ctime = ctime; |
| | | } |
| | | |
| | | public Date getCheatTime() { |
| | | return cheatTime; |
| | | } |
| | | |
| | | public void setCheatTime(Date cheatTime) { |
| | | this.cheatTime = cheatTime; |
| | | } |
| | | |
| | | public String getInformation() { |
| | | return information; |
| | | } |
| | | |
| | | public void setInformation(String information) { |
| | | this.information = information; |
| | | } |
| | | //案件Id |
| | | private Integer causeId; |
| | | //案件描述 |
| | | private String reportDescription; |
| | | //是否进群 |
| | | private Integer isInGroup; |
| | | |
| | | /** |
| | | * 获取主键值 |
| | |
| | | protected Serializable pkVal() { |
| | | return this.id; |
| | | } |
| | | } |
| | | } |
| | | |