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

21 lines
516 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_SM_USER")]
public class ErpSmUser
{
public string ID { get; set; }
public string PK_PSNDOC { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
/// <summary>
/// 1 未启用2已启用3已停用
/// </summary>
public int ENABLESTATE { get; set; }
}
}