zhongrj
2024-01-06 ad0bc4e763fa988a2ec4dd8dfab7381ea7726021
src/main/java/org/springblade/modules/task/entity/TaskLabelReportingEventEntity.java
@@ -16,6 +16,8 @@
 */
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;
@@ -48,7 +50,7 @@
    * 场所ID
    */
   @ApiModelProperty(value = "场所ID")
   private Integer placeId;
   private Long placeId;
   /**
    * 房屋ID
    */
@@ -65,6 +67,7 @@
   @ApiModelProperty(value = "发生时间")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @TableField(fill = FieldFill.INSERT)
   private Date happenTime;
   /**
    * 用户ID
@@ -95,7 +98,7 @@
    * 确认人ID
    */
   @ApiModelProperty(value = "确认人ID")
   private Integer confirmUserId;
   private Long confirmUserId;
   /**
    * 确认时间
    */
@@ -169,4 +172,16 @@
   @ApiModelProperty(value = "标签名称")
   private String labelName;
   @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;
}