添加项目文件。
This commit is contained in:
35
workflow/Tnb.WorkFlow.Entitys/Entity/FlowCommentEntity.cs
Normal file
35
workflow/Tnb.WorkFlow.Entitys/Entity/FlowCommentEntity.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.WorkFlow.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 流程评论.
|
||||
/// </summary>
|
||||
[SugarTable("FLOW_COMMENT")]
|
||||
public class FlowCommentEntity : CLDEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKID")]
|
||||
public string? TaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文本.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TEXT")]
|
||||
public string? Text { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 图片.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_IMAGE")]
|
||||
public string? Image { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 附件.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_FILE")]
|
||||
public string? File { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user