package com.ycl.dto.caseHandler;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* DispatchParam
|
*
|
* @version V1.0
|
* @author: mg
|
* @date: 2022-09-28 13:55
|
**/
|
@Data
|
public class DispatchInfoParam {
|
/**
|
* 执法人员
|
*/
|
@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;
|
|
}
|