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