31 lines
540 B
C#
31 lines
540 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 FlowName { get; set; }
|
|
|
|
public int FlowId { get; set; }
|
|
|
|
}
|
|
}
|