You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.5 KiB

2 years ago
using System;
namespace Win_in.Sfs.Shared.Domain;
public interface IHasHandled
{
/// <summary>
/// 实际托标签
/// </summary>
public string HandledContainerCode { get; set; }
/// <summary>
/// 实际箱标签
/// </summary>
public string HandledPackingCode { get; set; }
/// <summary>
/// 实际批次供应商批次
/// </summary>
public string HandledSupplierBatch { get; set; }
/// <summary>
/// 实际批次到货时间
/// </summary>
public DateTime HandledArriveDate { get; set; }
/// <summary>
/// 实际批次生产时间
/// </summary>
public DateTime HandledProduceDate { get; set; }
/// <summary>
/// 实际批次过期时间
/// </summary>
public DateTime HandledExpireDate { get; set; }
/// <summary>
/// 实际批次排序
/// </summary>
public string HandledLot { get; set; }
/// <summary>
/// 实际库位
/// </summary>
public string HandledLocationCode { get; set; }
/// <summary>
/// 实际库区
/// </summary>
public string HandledLocationArea { get; set; }
/// <summary>
/// 实际库位组
/// </summary>
public string HandledLocationGroup { get; set; }
/// <summary>
/// 实际ERP库位
/// </summary>
public string HandledLocationErpCode { get; set; }
/// <summary>
/// 实际仓库
/// </summary>
public string HandledWarehouseCode { get; set; }
/// <summary>
/// 实际数量
/// </summary>
public decimal HandledQty { get; set; }
}