You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/Emp/Dto/EmpOutput.cs

40 lines
827 B
C#

2 years ago
using System.Collections.Generic;
namespace Myshipping.Core.Service;
2 years ago
/// <summary>
/// 员工信息参数
/// </summary>
public class EmpOutput
{
/// <summary>
/// 员工Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 工号
/// </summary>
public string JobNum { get; set; }
/// <summary>
/// 机构id
/// </summary>
public string OrgId { get; set; }
/// <summary>
/// 机构名称
/// </summary>
public string OrgName { get; set; }
/// <summary>
/// 机构与职位信息
/// </summary>
public List<EmpExtOrgPosOutput> ExtOrgPos { get; set; } = new List<EmpExtOrgPosOutput>();
/// <summary>
/// 职位信息
/// </summary>
public List<EmpPosOutput> Positions { get; set; } = new List<EmpPosOutput>();
}