同步客户

This commit is contained in:
2024-07-24 12:04:51 +08:00
parent 0226533910
commit dd0ef3c8e2
4 changed files with 127 additions and 13 deletions

View File

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