Asoka.Wang 21f044712c 1
2025-08-27 18:39:19 +08:00

36 lines
883 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace NPP.SmartSchedue.Api.Contracts.Services.Work.Input;
/// <summary>
/// 任务自检输入
/// </summary>
public class WorkOrderValidationInput
{
/// <summary>
/// 任务ID列表单个或多个
/// </summary>
public List<long> WorkOrderIds { get; set; } = new();
/// <summary>
/// 自检通过后是否更新状态为待整合
/// </summary>
public bool UpdateStatusToPendingIntegration { get; set; } = false;
}
/// <summary>
/// 单个任务自检输入
/// </summary>
public class SingleWorkOrderValidationInput
{
/// <summary>
/// 任务ID
/// </summary>
public long WorkOrderId { get; set; }
/// <summary>
/// 自检通过后是否更新状态为待整合
/// </summary>
public bool UpdateStatusToPendingIntegration { get; set; } = false;
}