using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys.Entity; /// /// 流程评论. /// [SugarTable("FLOW_COMMENT")] public class FlowCommentEntity : CLDEntityBase { /// /// 任务id. /// [SugarColumn(ColumnName = "F_TASKID")] public string? TaskId { get; set; } /// /// 文本. /// [SugarColumn(ColumnName = "F_TEXT")] public string? Text { get; set; } /// /// 图片. /// [SugarColumn(ColumnName = "F_IMAGE")] public string? Image { get; set; } /// /// 附件. /// [SugarColumn(ColumnName = "F_FILE")] public string? File { get; set; } }