根据明细Id获取出入库明细信息,新增仓库翻译

This commit is contained in:
yang.lee
2023-11-17 16:01:56 +08:00
parent 5522f09780
commit f963b7067c
6 changed files with 33 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Entity.Constraints
{
public interface IInOutStockHEntity
{
string warehouse_id { get; set; }
}
}