Files
HTCloud/HT.Cloud.Domain/Entity/FlowManage/FormTestEntity.cs
2023-08-24 09:28:09 +08:00

50 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*******************************************************************************
* Copyright © 2020 HT.Cloud.Framework 版权所有
* Author: HT.Cloud
* Description: WaterCloud快速开发平台
* Website
*********************************************************************************/
using SqlSugar;
using System;
namespace HT.Cloud.Domain.FlowManage
{
[SugarTable("oms_formtest")]
[TenantAttribute("0")]
public class FormTestEntity : IEntity<FormTestEntity>, ICreationAudited
{
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true, ColumnDescription = "主键Id")]
public string F_Id { get; set; }
[SugarColumn(IsNullable = false, ColumnName = "F_UserName", ColumnDataType = "nvarchar(10)")]
public string F_UserName { get; set; }
[SugarColumn(IsNullable = false)]
public string F_RequestType { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? F_StartTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? F_EndTime { get; set; }
[SugarColumn(IsNullable = false, ColumnName = "F_RequestComment", ColumnDataType = "longtext")]
public string F_RequestComment { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "F_Attachment", ColumnDataType = "longtext")]
public string F_Attachment { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "F_FlowInstanceId", ColumnDataType = "nvarchar(50)")]
public string F_FlowInstanceId { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? F_CreatorTime { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "F_CreatorUserId", ColumnDataType = "nvarchar(50)")]
public string F_CreatorUserId { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "F_CreatorUserName", ColumnDataType = "nvarchar(50)")]
public string F_CreatorUserName { get; set; }
}
}