erp研发项目

This commit is contained in:
2024-10-09 13:42:39 +08:00
parent b3223e7966
commit fc4fc7ed3f
3 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}