Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/AssistUserResult.cs

25 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
{
/// <summary>
/// 人员基本信息
/// </summary>
public class AssistUserResult
{
/// <summary>
/// Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
public string UserName { get; set; }
}
}