using Admin.NET.Core;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application;
///
/// 分拣异常标记入参
///
public class SortExceptionFlagConfirmInput
{
///
/// 容器编号
///
public string ContainerCode { get; set; }
///
/// 异常原因
///
public string ExceptionReason { get; set; }
///
/// 分拣异常标记详情
///
public List SortExceptionFlagDetailsConfirmList { get; set; }
}
public class SortExceptionFlagDetailsConfirmInput
{
///
/// 容器分拣信息ID
///
public long ContainerSortId { get; set; }
///
/// 异常数量
///
public decimal ExceptionQuality { get; set; }
///
/// 容器编号
///
public string ContainerCode { get; set; }
///
/// 关联单号(目前只有下架单)
///
public string RelationNo { get; set; }
}