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.Dto
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工序管理流程Dto
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ProcessOperationFlowDto
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-10 16:37:48 +08:00
|
|
|
|
public string? FkRoutingCode { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
2026-01-10 16:37:48 +08:00
|
|
|
|
public string? FkOperationCode { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
2026-01-10 16:37:48 +08:00
|
|
|
|
public string? FlowCode { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
2026-01-10 16:37:48 +08:00
|
|
|
|
public string? FlowTypeCode { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
2026-01-10 16:37:48 +08:00
|
|
|
|
public string? FlowTypeName { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ProcessOperationFlowDto2
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 流程code
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string FlowCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string FlowTypeCode { get; set; }
|
|
|
|
|
|
public string FlowTypeName { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|