| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.ycl.platform.base.AbsEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 报备 |
| | |
| | | private Integer peopleId; |
| | | |
| | | @ApiModelProperty("点位ID") |
| | | @TableField("point_id") |
| | | private Integer pointId; |
| | | @TableField("serial_number") |
| | | private String serialNumber; |
| | | |
| | | @TableField("report_type") |
| | | private String reportType; |
| | | |
| | | @ApiModelProperty("审核时间") |
| | | @TableField("auditing_time") |
| | | private Date auditingTime; |
| | | |
| | | @ApiModelProperty("报备内容") |
| | | @TableField("report_content") |
| | |
| | | @TableField("error_type") |
| | | private String errorType; |
| | | |
| | | @ApiModelProperty("状态: 0:未审核,1:审核通过,2:审核驳回") |
| | | @TableField("status") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("生效时间") |
| | | @TableField("begin_create_time") |
| | | private Date beginCreateTime; |
| | | |
| | | @ApiModelProperty("失效时间") |
| | | @TableField("end_create_time") |
| | | private Date endCreateTime; |
| | | |
| | | /** 标识号:可用于查询历史审核记录 */ |
| | | @TableField("identify") |
| | | private String identify; |
| | | |
| | | /** 导入批次号 */ |
| | | @TableField("import_batch_number") |
| | | private String importBatchNumber; |
| | | } |