mg
2022-09-29 cbb807c80c747c37005d3a282b10782fc458f07f
ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java
@@ -1,6 +1,7 @@
package com.ycl.dto.caseHandler;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@@ -16,41 +17,49 @@
     * 执法人员
     */
    @JsonProperty("lawEnforcer")
    @ApiModelProperty(value = "执法人员",dataType = "Integer")
    private Integer lawEnforcer;
    /**
     * 执法人员姓名
     */
    @JsonProperty("lawEnforcerName")
    @ApiModelProperty(value = "执法人员姓名",dataType = "String")
    private String lawEnforcerName;
    /**
     * 执法车
     */
    @JsonProperty("enforcementCar")
    @ApiModelProperty(value = "执法车",dataType = "Integer")
    private Integer enforcementCar;
    /**
     * 执法队伍
     */
    @JsonProperty("enforcementTeam")
    @ApiModelProperty(value = "执法队伍",dataType = "String")
    private String enforcementTeam;
    /**
     * 联系方式
     */
    @JsonProperty("contactWay")
    @ApiModelProperty(value = "联系方式",dataType = "String")
    private String contactWay;
    /**
     * 距离
     */
    @JsonProperty("distance")
    @ApiModelProperty(value = "距离",dataType = "Integer")
    private Integer distance;
    /**
     * 处置日期
     */
    @JsonProperty("disposeDate")
    @ApiModelProperty(value = "处置日期",dataType = "String")
    private String disposeDate;
    /**
     * 派遣意见
     */
    @JsonProperty("dispatchOpinion")
    @ApiModelProperty(value = "派遣意见",dataType = "String")
    private String dispatchOpinion;
}