优化根据明细ID获取出入库明细代码

This commit is contained in:
alex
2023-07-05 10:04:48 +08:00
parent 6779adab6f
commit 9ce1f54f2f
8 changed files with 68 additions and 48 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities
{
public interface IInOutStockCode
{
string bill_d_id { get; set; }
}
}