12 lines
272 B
C#
12 lines
272 B
C#
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
|
|
{
|
|
[SugarTable("ERP_BD_PROJECT")]
|
|
public class ErpBdProject
|
|
{
|
|
public string ID { get; set; }
|
|
public string CODE { get; set; }
|
|
public string NAME { get; set; }
|
|
}
|
|
} |