You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
409 B
C#

namespace DS.WMS.Core.Application.Dtos
{
/// <summary>
/// 删除选项
/// </summary>
public enum DeleteOption
{
/// <summary>
/// 未指定
/// </summary>
NotSpecified,
/// <summary>
/// 仅明细
/// </summary>
DetailOnly,
/// <summary>
/// 整单删除
/// </summary>
Entire,
}
}