30 lines
665 B
C#
30 lines
665 B
C#
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 ProcessOperationBindFlowDto
|
|
{
|
|
/// <summary>
|
|
/// 工艺流程code
|
|
/// </summary>
|
|
|
|
public string? FkRoutingCode { get; set; }
|
|
/// <summary>
|
|
/// 工序code
|
|
/// </summary>
|
|
public string? FkOperationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流程code数组
|
|
/// </summary>
|
|
public string[]? FlowCodeArray { get; set; }
|
|
}
|
|
}
|