| | |
| | | */ |
| | | package org.springblade.modules.task.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.util.Date; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 旅馆安全自查任务 实体类 |
| | |
| | | * 场所ID |
| | | */ |
| | | @ApiModelProperty(value = "场所ID") |
| | | private Integer placeId; |
| | | private Long placeId; |
| | | /** |
| | | * 小区ID |
| | | */ |
| | |
| | | * 自查时间 |
| | | */ |
| | | @ApiModelProperty(value = "自查时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date checkTime; |
| | | /** |
| | | * 自查人姓名 |
| | | */ |
| | | @ApiModelProperty(value = "自查人姓名") |
| | | private Integer checkUserId; |
| | | private Long checkUserId; |
| | | /** |
| | | * 自查人姓名 |
| | | */ |
| | |
| | | * 确认时间 |
| | | */ |
| | | @ApiModelProperty(value = "确认时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date confirmTime; |
| | | /** |
| | | * 确认用户ID |
| | | */ |
| | | @ApiModelProperty(value = "确认用户ID") |
| | | private Integer confirmUserId; |
| | | private Long confirmUserId; |
| | | /** |
| | | * 确认用户ID |
| | | */ |
| | |
| | | @ApiModelProperty(value = "确认标记") |
| | | private String confirmFlag; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ApiModelProperty(value = "创建时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | @TableField(fill = FieldFill.UPDATE) |
| | | @ApiModelProperty(value = "更新时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date updateTime; |
| | | |
| | | } |