using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Values;
namespace Win.Sfs.Shared.DomainBase
{
///
/// 库存批次管理
///
public class Lots : ValueObject
{
///
/// 供应商批次
///
public string VendBatch { set; get; }
///
/// 批次
///
public string ShipBatch { set; get; }
///
/// 生产日期
///
public DateTime ProduceDate { set; get; }
/////
///// 生产周
/////
//public DateTime ProduceWeek { private set; get; }
/////
///// 到货日期
/////
//public DateTime ArrivalDate { private set; get; }
///
/// 收货日期
///
public DateTime ReceiptDate { set; get; }
protected override IEnumerable