| package com.doumee.dao.business.model; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.doumee.core.model.LoginUserModel; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 月台_叫号排队信息表 | 
|  * @author 江蹄蹄 | 
|  * @since 2024/04/28 16:06 | 
|  */ | 
| @Data | 
| @ApiModel("月台_叫号排队信息表") | 
| @TableName("`platform_queue`") | 
| public class PlatformQueue  extends LoginUserModel { | 
|   | 
|     @TableId(type = IdType.AUTO) | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer creator; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     private Date createDate; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer editor; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     private Date editDate; | 
|   | 
|     @ApiModelProperty(value = "是否删除0否 1是", example = "1") | 
|     @ExcelColumn(name="是否删除0否 1是") | 
|     private Integer isdeleted; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "月台作业编码(关联platform_job)", example = "1") | 
|     @ExcelColumn(name="月台作业编码(关联platform_job)") | 
|     private Integer jobId; | 
|   | 
|     @ApiModelProperty(value = "标题") | 
|     @ExcelColumn(name="标题") | 
|     private String title; | 
|   | 
|     @ApiModelProperty(value = "简介") | 
|     @ExcelColumn(name="简介") | 
|     private String content; | 
|   | 
|     @ApiModelProperty(value = "状态 0等待中 1叫号中 2作业中", example = "1") | 
|     @ExcelColumn(name="状态 0等待中 1叫号中 2作业中") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "关联对象编码 0作业", example = "1") | 
|     @ExcelColumn(name="关联对象编码 0作业") | 
|     private Integer objType; | 
|   | 
|     @ApiModelProperty(value = "关联对象编码", example = "1") | 
|     @ExcelColumn(name="关联对象编码") | 
|     private Integer objId; | 
|   | 
|     @ApiModelProperty(value = "车牌号") | 
|     @ExcelColumn(name="车牌号") | 
|     private String carCode; | 
|   | 
|     @ApiModelProperty(value = "月台编码", example = "1") | 
|     @ExcelColumn(name="月台编码") | 
|     private Integer platformId; | 
|   | 
|     @ApiModelProperty(value = "月台名称") | 
|     @ExcelColumn(name="月台名称") | 
|     private String platformName; | 
|   | 
|     @ApiModelProperty(value = "司机手机号") | 
|     @ExcelColumn(name="司机手机号") | 
|     private String driverPhone; | 
|   | 
|     @ApiModelProperty(value = "司机名") | 
|     @ExcelColumn(name="司机名") | 
|     private String driverName; | 
|   | 
|     @ApiModelProperty(value = "司机编码", example = "1") | 
|     @ExcelColumn(name="司机编码") | 
|     private Integer driverId; | 
|   | 
|     @ApiModelProperty(value = "订单合同号") | 
|     @ExcelColumn(name="订单合同号") | 
|     private String orderCode; | 
|   | 
| } |