| | |
| | | package com.ruoyi.doublePrevention.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.util.Date; |
| | |
| | | /** |
| | | * 主键 |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | |
| | |
| | | |
| | | private String checkContent; |
| | | |
| | | private String workType; |
| | | |
| | | private String taskNum; |
| | | |
| | | public String getWorkType() { |
| | | return workType; |
| | | } |
| | | |
| | | public void setWorkType(String workType) { |
| | | this.workType = workType; |
| | | } |
| | | |
| | | public String getTaskNum() { |
| | | return taskNum; |
| | | } |
| | | |
| | | public void setTaskNum(String taskNum) { |
| | | this.taskNum = taskNum; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |