zhuangpei-mesbackend/MDM/Models/Process/Dto/ProcessOperationFlowDto.cs

45 lines
837 B
C#
Raw Normal View History

2025-12-31 10:27:05 +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>
2026-01-04 17:01:33 +08:00
public class ProcessOperationFlowDto
2025-12-31 10:27:05 +08:00
{
2026-01-04 17:01:33 +08:00
2025-12-31 10:27:05 +08:00
public string FkRoutingCode { get; set; }
2026-01-04 17:01:33 +08:00
2025-12-31 10:27:05 +08:00
public string FkOperationCode { get; set; }
public string FlowCode { get; set; }
2026-01-04 17:01:33 +08:00
2025-12-31 15:40:54 +08:00
public string FlowTypeCode { get; set; }
2025-12-31 15:16:17 +08:00
2025-12-31 15:40:54 +08:00
public string FlowTypeName { get; set; }
2025-12-31 10:27:05 +08:00
}
2026-01-04 17:01:33 +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; }
}
2025-12-31 10:27:05 +08:00
}