| 12345678910111213141516171819202122232425262728293031 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>订单评审/交期确认批量执行入参</summary>
- public class SeOrderReviewExecuteInput
- {
- [Required(ErrorMessage = "订单主键列表不能为空")]
- [MinLength(1, ErrorMessage = "至少选择一条订单")]
- public List<long> Ids { get; set; } = new();
- }
- /// <summary>订单变更后重排入参</summary>
- public class SeOrderRefreshPlanInput
- {
- public string? Reason { get; set; }
- }
- /// <summary>订单评审编排执行结果</summary>
- public class SeOrderReviewExecuteResult
- {
- public string ActionCode { get; set; } = string.Empty;
- public int OrderCount { get; set; }
- public int EntryCount { get; set; }
- public int WorkOrderCreatedCount { get; set; }
- public int WorkOrderUpdatedCount { get; set; }
- public int ResourceCheckCount { get; set; }
- public int ResourceCheckLineCount { get; set; }
- public List<string> WorkOrders { get; set; } = new();
- public List<string> Warnings { get; set; } = new();
- public long RunLogId { get; set; }
- public string Message { get; set; } = string.Empty;
- }
|