package com.ruoyi.basic.pojo; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.time.LocalDateTime; @Data @TableName("standard_method_attachment") public class StandardMethodAttachment { @TableId(type = IdType.AUTO) private Long id; private Integer standardMethodId; private String fileName; private String fileUrl; private Integer sort; @TableField(fill = FieldFill.INSERT) private Integer createUser; @TableField(fill = FieldFill.INSERT_UPDATE) private Integer updateUser; @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; }