zhuangpei-mesbackend/MDM/Models/Process/ProcessOperationFlow.cs
gcw_MV9p2JJN 646ee1e7ea 1
2025-12-31 15:16:17 +08:00

62 lines
1.1 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.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Models.Process
{
/// <summary>
/// 工序流程关联表 1N
/// </summary>
[SugarTable("process_operation_flow")]
public class ProcessOperationFlow
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int id { get; set; }
[SugarColumn(ColumnName = "fk_routing_code")]
public string FkRoutingCode { get; set; }
[SugarColumn(ColumnName = "fk_operation_code")]
public string FkOperationCode { get; set; }
[SugarColumn(ColumnName = "flow_code")]
public string FlowCode { get; set; }
[SugarColumn(ColumnName = "flow_name")]
public string FlowName { get; set; }
[SugarColumn(ColumnName = "flow_id") ]
public int FlowId { get; set; }
[SugarColumn(ColumnName = "created_time")]
public DateTime CreatedTime { get; set; }
[SugarColumn(ColumnName = "updated_time")]
public DateTime UpdatedTime { get; set; }
}
}