12 lines
250 B
C#
12 lines
250 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Work.Input;
|
|
|
|
/// <summary>
|
|
/// 更新工序
|
|
/// </summary>
|
|
public class ProcessUpdateInput : ProcessAddInput
|
|
{
|
|
/// <summary>
|
|
/// 工序ID
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
} |