Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/ErpEntity/ErpOrgDept.cs
2024-09-19 13:41:52 +08:00

18 lines
470 B
C#

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