Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/ErpEntity/ErpBdPsndoc.cs
2024-11-01 14:08:30 +08:00

20 lines
474 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using SqlSugar;
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
/// <summary>
/// erp人员
/// </summary>
[SugarTable("ERP_BD_PSNDOC")]
public class ErpBdPsndoc
{
public string ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
/// <summary>
/// 1 未启用2已启用3已停用
/// </summary>
public int ENABLESTATE { get; set; }
}
}