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

28 lines
691 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LearningOfficer.OA.Common.Dtos.OA.WorkProcess.SunTaskFileAndUser;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
{
public class OtherInfoFinishRequest
{
/// <summary>
/// 任务id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 其他ID
/// </summary>
public long OtherId { get; set; }
/// <summary>
/// 工作内容
/// </summary>
public string Remark { get; set; }
public List<BaseTaskFileRequest>? files { get; set; }
}
}