using System;
namespace Win_in.Sfs.Shared.Domain;
public interface IHasBatch
{
///
/// 供应商批次
///
public string SupplierBatch { get; set; }
///
/// 到货时间
///
public DateTime ArriveDate { get; set; }
/// K
/// 生产时间
///
public DateTime ProduceDate { get; set; }
///
/// 过期时间
///
public DateTime ExpireDate { get; set; }
}