14 lines
297 B
C#
14 lines
297 B
C#
namespace Tnb.WarehouseMgr.Entities.Dto
|
|
{
|
|
/// <summary>
|
|
/// 库房业务更新输入参数
|
|
/// </summary>
|
|
public class FinishproductOutstockSignAllInput
|
|
{
|
|
/// <summary>
|
|
/// 区域
|
|
/// </summary>
|
|
public string? region_id { get; set; }
|
|
}
|
|
}
|