| | |
| | | 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; |
| | |
| | | /** |
| | | * 月台_叫号排队信息表 |
| | | * @author 江蹄蹄 |
| | | * @since 2024/04/28 16:06 |
| | | * @date 2024/06/28 10:03 |
| | | */ |
| | | @Data |
| | | @ApiModel("月台_叫号排队信息表") |
| | | @TableName("`platform_queue`") |
| | | public class PlatformQueue extends LoginUserModel { |
| | | public class PlatformQueue { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty(value = "主键", example = "1") |
| | |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @ExcelColumn(name="创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date createDate; |
| | | |
| | | @ApiModelProperty(value = "更新人编码", example = "1") |
| | |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | | @ExcelColumn(name="更新时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date editDate; |
| | | |
| | | @ApiModelProperty(value = "是否删除0否 1是", example = "1") |
| | |
| | | @ExcelColumn(name="月台作业编码(关联platform_job)") |
| | | private Integer jobId; |
| | | |
| | | @ApiModelProperty(value = "标题") |
| | | @ExcelColumn(name="标题") |
| | | private String title; |
| | | |
| | | @ApiModelProperty(value = "简介") |
| | | @ExcelColumn(name="简介") |
| | | private String content; |
| | |
| | | @ExcelColumn(name="状态 0等待中 1叫号中 2作业中") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "关联对象编码 0作业", example = "1") |
| | | @ExcelColumn(name="关联对象编码 0作业") |
| | | @ApiModelProperty(value = "关联对象编码 0月台作业", example = "1") |
| | | @ExcelColumn(name="关联对象编码 0月台作业") |
| | | private Integer objType; |
| | | |
| | | @ApiModelProperty(value = "关联对象编码", example = "1") |