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 SpotTaskUserRequest
{
///
/// 抽查记录表id
///
public long SpotId { get; set; }
///
/// 抽查人员id
///
public long UserId { get; set; }
///
/// 分值
///
public int ValueTotal { get; set; }
}
}