package com.ycl.dto.caseHandler; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * DispatchParam * * @version V1.0 * @author: mg * @date: 2022-09-28 13:55 **/ @Data @ApiModel("DispatchInfoParam") public class DispatchInfoParam { /** * 案件id */ @ApiModelProperty(value = "案件id") private Integer baseCaseId; /** * 执法人员 */ @ApiModelProperty(value = "执法人员") private Integer lawEnforcer; /** * 执法人员姓名 */ @ApiModelProperty(value = "执法人员姓名") private String lawEnforcerName; /** * 执法车 */ @ApiModelProperty(value = "执法车") private Integer enforcementCar; /** * 执法队伍 */ @ApiModelProperty(value = "执法队伍") private String enforcementTeam; /** * 联系方式 */ @ApiModelProperty(value = "联系方式") private String contactWay; /** * 距离 */ @ApiModelProperty(value = "距离") private Integer distance; /** * 处置日期 */ @ApiModelProperty(value = "处置日期") private String disposeDate; /** * 派遣意见 */ @ApiModelProperty(value = "派遣意见") private String dispatchOpinion; }