同步部门

This commit is contained in:
2024-09-19 13:41:52 +08:00
parent 4ec0362634
commit 9c098c0a6f
2 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using SqlSugar;
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
[SugarTable("ERP_ORG_DEPT")]
public class ErpOrgDept
{
public string PK_ORG { get; set; }
public string ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
public string VID { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public string MODIFIEDTIME { get; set; }
}
}