package com.ycl.dto.caseHandler;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* DispatchParam
|
*
|
* @version V1.0
|
* @author: mg
|
* @date: 2022-09-28 13:55
|
**/
|
@Data
|
@ApiModel("DispatchInfoParam")
|
public class DispatchInfoParam {
|
|
/**
|
* 案件id
|
*/
|
@ApiModelProperty(value = "案件id", required = true)
|
private Long baseCaseId;
|
|
/**
|
* 执法人员
|
*/
|
@ApiModelProperty(value = "执法人员")
|
private Long lawEnforcer;
|
/**
|
* 执法人员姓名
|
*/
|
@ApiModelProperty(value = "执法人员姓名")
|
private String lawEnforcerName;
|
/**
|
* 执法车
|
*/
|
@ApiModelProperty(value = "执法车")
|
private Long enforcementCar;
|
/**
|
* 执法队伍
|
*/
|
@ApiModelProperty(value = "执法队伍")
|
private String enforcementTeam;
|
/**
|
* 联系方式
|
*/
|
@ApiModelProperty(value = "联系方式")
|
private String contactWay;
|
/**
|
* 距离
|
*/
|
@ApiModelProperty(value = "距离")
|
private Integer distance;
|
/**
|
* 处置日期
|
*/
|
@ApiModelProperty(value = "处置日期")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime disposeDate;
|
/**
|
* 派遣意见
|
*/
|
@ApiModelProperty(value = "派遣意见")
|
private String dispatchOpinion;
|
|
/**
|
* 当前登录人
|
*/
|
@ApiModelProperty(value = "派遣意见")
|
private Long createUser;
|
|
}
|