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.
17 lines
363 B
17 lines
363 B
2 years ago
|
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; }
|
||
|
}
|