青羊经侦大队-数据平台
baizonghao
2023-05-19 1c3f11dfd7493a4c4a8d41e2499477840bcc070c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
}