47 lines
1001 B
C#
47 lines
1001 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MDM.Models.Process
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 流程
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("process_flow_list")]
|
|||
|
|
public class ProcessFlowList
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|||
|
|
public int id { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
[SugarColumn(ColumnName = "flow_code")]
|
|||
|
|
public string FlowCode { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
[SugarColumn(ColumnName = "flow_name")]
|
|||
|
|
public string FlowName { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
[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; }
|
|||
|
|
}
|
|||
|
|
}
|