package com.ycl.platform.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 报备审核记录
|
*
|
* @author:xp
|
* @date:2024/9/1 21:03
|
*/
|
@Data
|
@TableName("t_report_auditing_record")
|
public class ReportAuditingRecord {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 报备id
|
*/
|
@TableField("report_id")
|
private Integer reportId;
|
|
/**
|
* 审核结果
|
*/
|
@TableField("result")
|
private Boolean result;
|
|
/**
|
* 审核意见
|
*/
|
@TableField("result_remark")
|
private String resultRemark;
|
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(value = "create_time",fill = FieldFill.INSERT)
|
private Date createTime;
|
|
/**
|
* 逻辑删除
|
*/
|
@TableField(value = "deleted", fill = FieldFill.INSERT)
|
private Integer deleted;
|
|
}
|