This commit is contained in:
2024-07-18 12:04:52 +08:00
parent 7f7f21c271
commit 5bbd7eb25f
7 changed files with 145 additions and 32 deletions

View File

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