mg
2022-10-02 0d931fe3d16e11b9a94787380c0bc6e9e0696dba
ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java
@@ -1,6 +1,6 @@
package com.ycl.dto.caseHandler;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -12,54 +12,53 @@
 * @date: 2022-09-28 13:55
 **/
@Data
@ApiModel("DispatchInfoParam")
public class DispatchInfoParam {
    /**
     * 案件id
     */
    @ApiModelProperty(value = "案件id")
    private Integer baseCaseId;
    /**
     * 执法人员
     */
    @JsonProperty("lawEnforcer")
    @ApiModelProperty(value = "执法人员",dataType = "Integer")
    @ApiModelProperty(value = "执法人员")
    private Integer lawEnforcer;
    /**
     * 执法人员姓名
     */
    @JsonProperty("lawEnforcerName")
    @ApiModelProperty(value = "执法人员姓名",dataType = "String")
    @ApiModelProperty(value = "执法人员姓名")
    private String lawEnforcerName;
    /**
     * 执法车
     */
    @JsonProperty("enforcementCar")
    @ApiModelProperty(value = "执法车",dataType = "Integer")
    @ApiModelProperty(value = "执法车")
    private Integer enforcementCar;
    /**
     * 执法队伍
     */
    @JsonProperty("enforcementTeam")
    @ApiModelProperty(value = "执法队伍",dataType = "String")
    @ApiModelProperty(value = "执法队伍")
    private String enforcementTeam;
    /**
     * 联系方式
     */
    @JsonProperty("contactWay")
    @ApiModelProperty(value = "联系方式",dataType = "String")
    @ApiModelProperty(value = "联系方式")
    private String contactWay;
    /**
     * 距离
     */
    @JsonProperty("distance")
    @ApiModelProperty(value = "距离",dataType = "Integer")
    @ApiModelProperty(value = "距离")
    private Integer distance;
    /**
     * 处置日期
     */
    @JsonProperty("disposeDate")
    @ApiModelProperty(value = "处置日期",dataType = "String")
    @ApiModelProperty(value = "处置日期")
    private String disposeDate;
    /**
     * 派遣意见
     */
    @JsonProperty("dispatchOpinion")
    @ApiModelProperty(value = "派遣意见",dataType = "String")
    @ApiModelProperty(value = "派遣意见")
    private String dispatchOpinion;
}