同步基础数据

This commit is contained in:
2024-07-24 17:50:20 +08:00
parent dd0ef3c8e2
commit 5cb371d4bd
8 changed files with 359 additions and 18 deletions

View File

@@ -8,5 +8,9 @@ namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
public string ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public string MODIFIEDTIME { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
using SqlSugar;
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
[SugarTable("ERP_BD_PSNDOC")]
public class ErpBdPsndoc
{
public string ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
using SqlSugar;
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
[SugarTable("ERP_BD_SUPPLIER")]
public class ErpBdSupplier
{
public string ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public string MODIFIEDTIME { get; set; }
}
}

View File

@@ -90,5 +90,15 @@ namespace Tnb.ProductionMgr.Entities.Entity
/// 客户id
/// </summary>
public string customer_id { get; set; }
/// <summary>
/// 供应商id
/// </summary>
public string supplier_id { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public string erp_modify_time { get; set; }
}
}

View File

@@ -256,5 +256,11 @@ public partial class PrdMo : BaseEntity<string>
/// </summary>
public string erp_mo_pk { get; set; }
/// <summary>
/// 工单类别
/// </summary>
/// <returns></returns>
public string mo_category { get; set; }
}