| | |
| | | package com.ruoyi.tms.domain; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 司机调度关联表对象 tms_driver_dispatch |
| | | * |
| | |
| | | * @date 2025-11-15 |
| | | */ |
| | | @Data |
| | | public class TmsDriverDispatch{ |
| | | public class TmsDriverDispatch { |
| | | |
| | | |
| | | /** 主键ID */ |
| | | @TableId(value="id",type = IdType.AUTO) |
| | | /** |
| | | * 主键ID |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | |
| | | /** 司机ID */ |
| | | @Excel(name = "司机ID") |
| | | @TableField("driver_id") |
| | | /** |
| | | * 司机ID |
| | | */ |
| | | @Excel(name = "司机ID") |
| | | @TableField("driver_id") |
| | | private Integer driverId; |
| | | |
| | | |
| | | /** 调度单ID */ |
| | | @Excel(name = "调度单ID") |
| | | @TableField("dispatch_id") |
| | | /** |
| | | * 调度单ID |
| | | */ |
| | | @Excel(name = "调度单ID") |
| | | @TableField("dispatch_id") |
| | | private Integer dispatchId; |
| | | |
| | | @Excel(name = "车辆ID") |
| | | @TableField("vehicle_id") |
| | | private Integer vehicleId; |
| | | |
| | | /** 状态:0=行程中,1=待甩挂,2=待接挂,3=已甩挂,4=已接挂,5=完成行程 */ |
| | | @Excel(name = "状态:0=行程中,1=待甩挂,2=待接挂,3=已甩挂,4=已接挂,5=完成行程") |
| | | @TableField("status") |
| | | /** |
| | | * 状态:0=行程中,1=待甩挂,2=待接挂,3=已甩挂,4=已接挂,5=完成行程 |
| | | */ |
| | | @Excel(name = "状态:0=行程中,1=待甩挂,2=待接挂,3=已甩挂,4=已接挂,5=完成行程") |
| | | @TableField("status") |
| | | private Integer status; |
| | | |
| | | |