| | |
| | | |
| | | 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; |
| | |
| | | //涉案金额 |
| | | private Double amountInvolved; |
| | | //报案材料图片地址 多个用,分隔 |
| | | private String reportMaterials; |
| | | // private String reportMaterials; |
| | | |
| | | // 身份证 |
| | | private String idCardMaterials; |
| | | // 合同 |
| | | private String contractMaterials; |
| | | // 交易 |
| | | private String transactionMaterials; |
| | | // 其他 |
| | | private String elseMaterials; |
| | | |
| | | |
| | | //报案时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date reportTime; |
| | |
| | | private String information; |
| | | //案件Id |
| | | private Integer causeId; |
| | | //案件描述 |
| | | private String reportDescription; |
| | | //是否进群 |
| | | private Integer isInGroup; |
| | | //驳回原因 |
| | | private String remarks; |
| | | |
| | | /** |
| | | * 获取主键值 |