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.
 
 
 
 
 
 

16 lines
363 B

using Win_in.Sfs.Shared.Domain.Shared;
namespace Win_in.Sfs.Shared.Domain;
public interface IHasFromToInventoryStatus
{
/// <summary>
/// 来源库存状态
/// </summary>
public EnumInventoryStatus FromStatus { get; set; }
/// <summary>
/// 目标库存状态
/// </summary>
public EnumInventoryStatus ToStatus { get; set; }
}