同步基础数据

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

@@ -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; }
}
}