package jnpf.limsEntity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.util.Date; @Data @TableName("lims_message_event") public class LimsMessageEventEntity { @TableId(value = "id", type = IdType.ASSIGN_ID) private String id; @TableField("tenant_id") private String tenantId; @TableField("event_code") private String eventCode; @TableField("biz_id") private String bizId; @TableField("remind_stage") private String remindStage; @TableField("occurrence_key") private String occurrenceKey; @TableField("recipient_snapshot") private String recipientSnapshot; @TableField("parameter_snapshot") private String parameterSnapshot; private LimsMessageEventStatus status; @TableField("recipient_count") private Integer recipientCount; @TableField("sent_count") private Integer sentCount; @TableField("failed_count") private Integer failedCount; @TableField("retry_count") private Integer retryCount; @TableField("next_retry_time") private Date nextRetryTime; @TableField("error_message") private String errorMessage; @TableField("created_time") private Date createdTime; @TableField("last_modify_time") private Date lastModifyTime; @TableField("completed_time") private Date completedTime; }