同步客户

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

View File

@@ -85,5 +85,10 @@ namespace Tnb.ProductionMgr.Entities.Entity
/// 单位id
/// </summary>
public string cunitid { get; set; }
/// <summary>
/// 客户id
/// </summary>
public string customer_id { get; set; }
}
}