| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField("id") |
| | | @TableId |
| | | private Long id; |
| | | |
| | | /** |
| | | * 上报次数 |
| | | */ |
| | | @TableField("times") |
| | | private Integer times; |
| | | |
| | | @TableField("robot_code") |
| | | private String robotCode; |
| | |
| | | @TableField("begin_time") |
| | | private String beginTime; |
| | | |
| | | @TableField("warnContent") |
| | | private String warn_content; |
| | | @TableField("warn_content") |
| | | private String warnContent; |
| | | |
| | | @TableField("task_code") |
| | | private String taskCode; |
| | |
| | | @TableField("loc_no") |
| | | private String locNo; |
| | | |
| | | @TableField("source_locNo") |
| | | @TableField("source_loc_no") |
| | | private String sourceLocNo; |
| | | |
| | | @TableField("appe_time") |
| | |
| | | |
| | | @TableField("modi_time") |
| | | private Date modiTime; |
| | | |
| | | // @TableField("report_time") |
| | | // private Date reportTime; |
| | | |
| | | @TableField("memo") |
| | | private String memo; |
| | | |
| | | } |