45 lines
837 B
C#
45 lines
837 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 ProcessOperationFlowDto
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
public string FkRoutingCode { get; set; }
|
|||
|
|
|
|||
|
|
public string FkOperationCode { get; set; }
|
|||
|
|
|
|||
|
|
public string FlowCode { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
public string FlowTypeCode { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
public string FlowTypeName { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|