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>
|
|
|
|
|
|
/// 工序流程关联表 1:N
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("process_operation_flow")]
|
|
|
|
|
|
public class ProcessOperationFlow
|
|
|
|
|
|
{
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
|
2025-12-31 15:16:17 +08:00
|
|
|
|
|
2025-12-29 16:58:36 +08:00
|
|
|
|
[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; }
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-12-31 15:16:17 +08:00
|
|
|
|
[SugarColumn(ColumnName = "flow_id") ]
|
|
|
|
|
|
public int FlowId { get; set; }
|
2025-12-29 16:58:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|