根据明细Id获取出入库明细信息,新增仓库翻译
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
public interface IInOutStockCode
|
||||
{
|
||||
string bill_d_id { get; set; }
|
||||
|
||||
//string line_status { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,12 @@ namespace Tnb.WarehouseMgr.Entities
|
||||
public interface IInOutStockDetail<TStockCode> where TStockCode : BaseEntity<string>, new()
|
||||
{
|
||||
string? line_status { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库Id
|
||||
/// </summary>
|
||||
string? warehouse_id { get; set; }
|
||||
|
||||
|
||||
List<TStockCode> CodeDetails { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user