2026-01-10 13:47:54 +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>
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarTable("process_operation_flow", "工序流程关联表 1:N")]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public class ProcessOperationFlow
|
|
|
|
|
|
{
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarColumn(ColumnName = "fk_routing_code",Length =50)]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public string FkRoutingCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarColumn(ColumnName = "fk_operation_code", Length = 50)]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public string FkOperationCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 流程code
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarColumn(ColumnName = "flow_code", Length = 50)]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public string FlowCode { get; set; }
|
|
|
|
|
|
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarColumn(ColumnName = "flow_type_code", Length = 50)]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public string FlowTypeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-16 10:40:58 +08:00
|
|
|
|
[SugarColumn(ColumnName = "flow_type_name", Length = 50)]
|
2026-01-10 13:47:54 +08:00
|
|
|
|
public string FlowTypeName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|