Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/FollowInfoFinishRequest.cs

22 lines
455 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
{
public class FollowInfoFinishRequest
{
/// <summary>
/// 任务id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 备 注:跟课id
/// </summary>
public long FollowId { get; set; }
}
}