同步物料 物料清单

This commit is contained in:
2024-07-19 16:51:07 +08:00
parent 02616b6170
commit 5345400596
14 changed files with 280 additions and 50 deletions

View File

@@ -0,0 +1,38 @@
using SqlSugar;
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
[SugarTable("BOM_LIST")]
public class BomList
{
/// <summary>
/// 关联id
/// </summary>
public string BOMID { get; set; }
/// <summary>
/// 父物料编号
/// </summary>
public string MPRODID { get; set; }
/// <summary>
/// 父物料单位
/// </summary>
public string UNIT { get; set; }
/// <summary>
/// 版本
/// </summary>
public string HVERSION { get; set; }
/// <summary>
/// 子物料编号
/// </summary>
public string SUBPRODID { get; set; }
/// <summary>
/// 底数
/// </summary>
public decimal DISHU { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal BATCHAMOUNT { get; set; }
}
}

View File

@@ -52,5 +52,9 @@ namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
/// 物料主键+物料主单位
/// </summary>
public string AID { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public string MODIFIEDTIME { get; set; }
}
}