package com.example.jz.modle.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
@ApiModel(description = "案件录入案件人员详情",value = "CauseReportVo")
|
public class CauseReportVo {
|
//头像地址
|
private String pic;
|
//报案人id
|
private String userName;
|
/**
|
* 手机号码
|
*/
|
private String userMobile;
|
/**
|
* 用户身份证号码
|
*/
|
private String userIdcard;
|
//是否代办 1(代办) 0(不是代办)
|
private String isCommission;
|
//涉案金额
|
private Double amountInvolved;
|
//报案材料图片地址 多个用,分隔
|
private String reportMaterials;
|
//报案时间
|
private Date reportTime;
|
//状态,1为通过 0为未审核
|
private Integer status;
|
//创建时间
|
private Date ctime;
|
//被骗时间
|
private Date cheatTime;
|
//补充信息
|
private String information;
|
//案件Id
|
private Integer causeId;
|
//群组id
|
private Integer groupId;
|
}
|