package com.ruoyi.collaborativeApproval.pojo; import com.baomidou.mybatisplus.annotation.FieldFill; 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 java.io.Serializable; import java.time.LocalDateTime; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; /** *

* 规章制度管理--附件 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-01-13 01:06:41 */ @Getter @Setter @TableName("rules_regulations_management_file") @Schema(name = "RulesRegulationsManagementFile对象", description = "规章制度管理--附件") public class RulesRegulationsManagementFile implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; @Schema(description = "文件名称") private String name; @Schema(description = "文件路径") private String url; @Schema(description = "文件大小") private Integer fileSize; @Schema(description = "规章制度ID") private Integer rulesRegulationsManagementId; @Schema(description = "创建时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "创建用户") @TableField(fill = FieldFill.INSERT) private Long createUser; @Schema(description = "修改时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "修改用户") @TableField(fill = FieldFill.INSERT_UPDATE) private Long updateUser; @Schema(description = "租户ID") @TableField(fill = FieldFill.INSERT) private Long tenantId; @TableField(fill = FieldFill.INSERT) private Long deptId; }