Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/ErpEntity/ErpBdCustomer.cs
2024-07-24 12:04:51 +08:00

12 lines
274 B
C#

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