package com.example.jz.modle.dto;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.example.jz.modle.entity.Report;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
import java.util.Date;
|
|
/**
|
* @author 安瑾然
|
* @data 2022/7/18 - 2:12 PM
|
* @description
|
*/
|
@Data
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class AddReportLoadDto {
|
@ApiModelProperty(value = "报案人",dataType = "String")
|
@ExcelProperty(value = "报案人",index = 0)
|
private String reporterName;
|
|
@ApiModelProperty(value = "报案人手机号",dataType = "String")
|
@ExcelProperty(value = "手机号",index = 1)
|
//报案人手机号
|
private String mobile;
|
|
@ApiModelProperty(value = "报案人身份证号",dataType = "String")
|
@ExcelProperty(value = "身份证号",index = 2)
|
//报案人身份证号
|
private String idcard;
|
|
@ExcelProperty(value = "被骗时间",index = 3)
|
private Date cheatTime;
|
|
@ExcelProperty(value = "涉案金额",index = 4)
|
private Double amountInvolved;
|
|
@ExcelProperty(value = "案件描述",index = 5)
|
private String reportDescription;
|
|
@ExcelProperty(value = "补充信息",index = 6)
|
private String information;
|
|
@ApiModelProperty(value = "群组id",dataType = "Integer")
|
private Integer groupId;
|
|
//案件Id
|
private Integer causeId;
|
}
|