zhuangpei-mesbackend/MDM/Models/Process/ProcessFlowList.cs

47 lines
1019 B
C#
Raw Normal View History

2025-12-29 16:58:36 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Models.Process
{
/// <summary>
/// 流程
/// </summary>
2025-12-31 17:26:45 +08:00
[SugarTable("process_flow_dict")]
2025-12-29 16:58:36 +08:00
public class ProcessFlowList
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int id { get; set; }
2025-12-31 15:57:20 +08:00
[SugarColumn(ColumnName = "flow_type_code")]
public string FlowTypeCode { get; set; }
2025-12-29 16:58:36 +08:00
2025-12-31 15:57:20 +08:00
[SugarColumn(ColumnName = "flow_type_name")]
public string FlowTypeName { get; set; }
2025-12-29 16:58:36 +08:00
[SugarColumn(ColumnName = "created_time")]
public DateTime CreatedTime { get; set; }
[SugarColumn(ColumnName = "created_by")]
public string CreatedBy { get; set; }
[SugarColumn(ColumnName = "updated_time")]
public DateTime UpdatedTime { get; set; }
[SugarColumn(ColumnName = "updated_by")]
public string UpdatedBy { get; set; }
}
}