package com.ycl.entity.caseHandler;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 调度信息类
|
* </p>
|
*
|
* @author mg
|
* @since 2022-09-28
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_dispatch_info")
|
public class DispatchInfo {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 处置流程记录Id
|
*/
|
@TableField("dispose_record_id")
|
private Integer disposeRecordId;
|
/**
|
* 执法人员
|
*/
|
@TableField("law_enforcer")
|
private Integer lawEnforcer;
|
/**
|
* 执法人员姓名
|
*/
|
@TableField("law_enforcer_name")
|
private String lawEnforcerName;
|
/**
|
* 执法车
|
*/
|
@TableField("enforcement_car")
|
private Integer enforcementCar;
|
/**
|
* 执法队伍
|
*/
|
@TableField("enforcement_team")
|
private String enforcementTeam;
|
/**
|
* 联系方式
|
*/
|
@TableField("contact_way")
|
private String contactWay;
|
/**
|
* 距离
|
*/
|
@TableField("distance")
|
private Integer distance;
|
/**
|
* 处置日期
|
*/
|
@TableField("dispose_date")
|
private Date disposeDate;
|
/**
|
* 派遣意见
|
*/
|
@TableField("dispatch_opinion")
|
private String dispatchOpinion;
|
/**
|
* 创建人
|
*/
|
@TableField("create_user")
|
private Integer createUser;
|
/**
|
* 创建时间
|
*/
|
@TableField("create_time")
|
private Date createTime;
|
|
}
|