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.
26 lines
504 B
26 lines
504 B
using System;
|
|
|
|
namespace Win_in.Sfs.Shared.Domain;
|
|
|
|
public interface IHasBatch
|
|
{
|
|
/// <summary>
|
|
/// 供应商批次
|
|
/// </summary>
|
|
public string SupplierBatch { get; set; }
|
|
|
|
/// <summary>
|
|
/// 到货时间
|
|
/// </summary>
|
|
public DateTime ArriveDate { get; set; }
|
|
|
|
/// <summary>K
|
|
/// 生产时间
|
|
/// </summary>
|
|
public DateTime ProduceDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 过期时间
|
|
/// </summary>
|
|
public DateTime ExpireDate { get; set; }
|
|
}
|
|
|