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