package jnpf.tmsEntity; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.util.Date; /** * 培训任务教材/附件 tms_task_file */ @Data @TableName("tms_task_file") public class TmsTaskFileEntity { @TableId("f_id") private String id; @TableField(value = "f_tenant_id", fill = FieldFill.INSERT) private String tenantId; @TableField("f_foreign_id") private String foreignId; @TableField("file_no") private String fileNo; @TableField("file_name") private String fileName; @TableField("material_id") private String materialId; @TableField("file_json") private String fileJson; @TableField("can_download") private String canDownload; @TableField(value = "f_creator_user_id", fill = FieldFill.INSERT) private String creatorUserId; @TableField(value = "f_creator_time", fill = FieldFill.INSERT) private Date creatorTime; @TableLogic @TableField("f_delete_mark") private Integer deleteMark; }