package com.ycl.entity.carManage;
|
|
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.io.Serializable;
|
|
/**
|
* <p>
|
* 执法车列表(对接执法车GPS)
|
* </p>
|
*
|
* @author zhanghua
|
* @since 2022-10-08
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_car_enforcecar")
|
public class CarEnforcecar implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 车牌号
|
*/
|
@TableField("car_number")
|
private String carNumber;
|
|
/**
|
* 车主姓名
|
*/
|
@TableField("owner_name")
|
private String ownerName;
|
|
/**
|
* 车辆使用人员
|
*/
|
@TableField("vehicle_user")
|
private String vehicleUser;
|
|
/**
|
* 联系方式
|
*/
|
@TableField("contact")
|
private String contact;
|
|
/**
|
* 轨迹分析
|
*/
|
@TableField("trajectory")
|
private String trajectory;
|
|
/**
|
* 所属部门大队id
|
*/
|
@TableField("depart_id")
|
private String departId;
|
/**
|
* 所属大队
|
*/
|
@TableField("belong")
|
@Deprecated
|
private String belong;
|
|
/**
|
* 所属部门
|
*/
|
@TableField("depart")
|
@Deprecated
|
private String depart;
|
}
|