From 4cdb5cec4d5c79aa662d73a86bb1dfcc9d73f1e2 Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期六, 01 十月 2022 22:33:29 +0800
Subject: [PATCH] bug 处理
---
ycl-platform/src/main/java/com/ycl/entity/caseHandler/DispatchInfo.java | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/ycl-platform/src/main/java/com/ycl/entity/caseHandler/DispatchInfo.java b/ycl-platform/src/main/java/com/ycl/entity/caseHandler/DispatchInfo.java
index c72ca6c..82a709e 100644
--- a/ycl-platform/src/main/java/com/ycl/entity/caseHandler/DispatchInfo.java
+++ b/ycl-platform/src/main/java/com/ycl/entity/caseHandler/DispatchInfo.java
@@ -4,9 +4,11 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
+import java.io.Serializable;
import java.util.Date;
/**
@@ -20,7 +22,7 @@
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_dispatch_info")
-public class DispatchInfo {
+public class DispatchInfo implements Serializable {
private static final long serialVersionUID = 1L;
@@ -28,62 +30,74 @@
* id
*/
@TableId(value = "id", type = IdType.AUTO)
+ @ApiModelProperty(value = "id",dataType = "Integer")
private Integer id;
/**
* 澶勭疆娴佺▼璁板綍Id
*/
@TableField("dispose_record_id")
+ @ApiModelProperty(value = "澶勭疆娴佺▼璁板綍Id",dataType = "Integer")
private Integer disposeRecordId;
/**
* 鎵ф硶浜哄憳
*/
@TableField("law_enforcer")
+ @ApiModelProperty(value = "鎵ф硶浜哄憳",dataType = "Integer")
private Integer lawEnforcer;
/**
* 鎵ф硶浜哄憳濮撳悕
*/
@TableField("law_enforcer_name")
+ @ApiModelProperty(value = "鎵ф硶浜哄憳濮撳悕",dataType = "String")
private String lawEnforcerName;
/**
* 鎵ф硶杞�
*/
@TableField("enforcement_car")
+ @ApiModelProperty(value = "鎵ф硶杞�",dataType = "Integer")
private Integer enforcementCar;
/**
* 鎵ф硶闃熶紞
*/
@TableField("enforcement_team")
+ @ApiModelProperty(value = "鎵ф硶闃熶紞",dataType = "String")
private String enforcementTeam;
/**
* 鑱旂郴鏂瑰紡
*/
@TableField("contact_way")
+ @ApiModelProperty(value = "鑱旂郴鏂瑰紡",dataType = "String")
private String contactWay;
/**
* 璺濈
*/
@TableField("distance")
+ @ApiModelProperty(value = "璺濈",dataType = "Integer")
private Integer distance;
/**
* 澶勭疆鏃ユ湡
*/
@TableField("dispose_date")
+ @ApiModelProperty(value = "澶勭疆鏃ユ湡",dataType = "Date")
private Date disposeDate;
/**
* 娲鹃仯鎰忚
*/
@TableField("dispatch_opinion")
+ @ApiModelProperty(value = "娲鹃仯鎰忚",dataType = "String")
private String dispatchOpinion;
/**
* 鍒涘缓浜�
*/
@TableField("create_user")
+ @ApiModelProperty(value = "鍒涘缓浜�",dataType = "Integer")
private Integer createUser;
/**
* 鍒涘缓鏃堕棿
*/
@TableField("create_time")
+ @ApiModelProperty(value = "鍒涘缓鏃堕棿",dataType = "Date")
private Date createTime;
}
--
Gitblit v1.8.0