mg
2022-09-29 cbb807c80c747c37005d3a282b10782fc458f07f
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;
}