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

22 lines
606 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.
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
{
public class ErpUserDto
{
/// <summary>
/// 员工id
/// </summary>
public string PERSON_ID { get; set; }
public string USER_ID { get; set; }
public string CODE { get; set; }
public string NAME { get; set; }
/// <summary>
/// 1 erp人员 2 erp用户
/// </summary>
public string TYPE { get; set; }
/// <summary>
/// 1 未启用2已启用3已停用
/// </summary>
public int ENABLESTATE { get; set; }
}
}