Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/ModifyEnabledInput.cs
2023-11-16 16:21:44 +08:00

24 lines
615 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Tnb.WarehouseMgr.Entities.Enums;
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 进出库策略状态修改输入参数s
/// </summary>
public class ModifyEnabledInput
{
/// <summary>
/// 1、入库 2我、出库
/// </summary>
public EnumInOutStockType strategyType { get; set; }
/// <summary>
/// 选中的策略ID列表
/// </summary>
public List<string> ids { get; set; }
/// <summary>
/// 状态 0:禁用 1启用
/// </summary>
public int status { get; set; }
}
}