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 SpotTaskUserResult { /// /// id /// public long Id { get; set; } /// /// 抽查记录表id /// public long SpotId { get; set; } /// /// 抽查人员id /// public long UserId { get; set; } /// /// 得分 /// public decimal ValueTotal { get; set; } /// /// 抽查人员名称 /// public string UserName { get; set; } = null!; /// /// 添加时间 /// public DateTime AddTime { get; set; } } }