mg
2022-09-28 179e7b70b95ab8545678ef4e037659f236233171
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
53
54
55
56
package com.ycl.dto.caseHandler;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * DispatchParam
 *
 * @version V1.0
 * @author: mg
 * @date: 2022-09-28 13:55
 **/
@Data
public class DispatchInfoParam {
    /**
     * 执法人员
     */
    @JsonProperty("lawEnforcer")
    private Integer lawEnforcer;
    /**
     * 执法人员姓名
     */
    @JsonProperty("lawEnforcerName")
    private String lawEnforcerName;
    /**
     * 执法车
     */
    @JsonProperty("enforcementCar")
    private Integer enforcementCar;
    /**
     * 执法队伍
     */
    @JsonProperty("enforcementTeam")
    private String enforcementTeam;
    /**
     * 联系方式
     */
    @JsonProperty("contactWay")
    private String contactWay;
    /**
     * 距离
     */
    @JsonProperty("distance")
    private Integer distance;
    /**
     * 处置日期
     */
    @JsonProperty("disposeDate")
    private String disposeDate;
    /**
     * 派遣意见
     */
    @JsonProperty("dispatchOpinion")
    private String dispatchOpinion;
 
}