Files
wcs/WCS.Model/ApiModel/Stocktaking/StockTakingByIdRequest.cs
hehaibing-1996 ceebffcc8a 1.导入当前库存的逻辑修改
2.增加盘点接口
2025-01-24 08:19:10 +08:00

14 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.Stocktaking
{
public class StockTakingByIdRequest:RequestBase
{
public int MatDetailCurrentInfoId { get; set; }
public int MatQty { get; set; }
}
}