From 064a3b0b19604f6817705871af6343726c42feff Mon Sep 17 00:00:00 2001 From: wl <173@qq.com> Date: 星期一, 10 十月 2022 15:39:52 +0800 Subject: [PATCH] 部门查询 车俩店铺bug修改 --- ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java | 37 ++++++++++++++++++------------------- 1 files changed, 18 insertions(+), 19 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java b/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java index ffb38b1..59c9241 100644 --- a/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java +++ b/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 Long baseCaseId; /** * 鎵ф硶浜哄憳 */ - @JsonProperty("lawEnforcer") - @ApiModelProperty(value = "鎵ф硶浜哄憳",dataType = "Integer") - private Integer lawEnforcer; + @ApiModelProperty(value = "鎵ф硶浜哄憳") + private Long lawEnforcer; /** * 鎵ф硶浜哄憳濮撳悕 */ - @JsonProperty("lawEnforcerName") - @ApiModelProperty(value = "鎵ф硶浜哄憳濮撳悕",dataType = "String") + @ApiModelProperty(value = "鎵ф硶浜哄憳濮撳悕") private String lawEnforcerName; /** * 鎵ф硶杞� */ - @JsonProperty("enforcementCar") - @ApiModelProperty(value = "鎵ф硶杞�",dataType = "Integer") - private Integer enforcementCar; + @ApiModelProperty(value = "鎵ф硶杞�") + private Long 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; } -- Gitblit v1.8.0