28 lines
661 B
C#
28 lines
661 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 SpotTaskFinishRequest
|
|
{
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 抽查记录表id
|
|
/// </summary>
|
|
public long SpotId { get; set; }
|
|
/// <summary>
|
|
/// 反馈/反思
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|