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

22 lines
649 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 BaseTaskAddResult
{
/// <summary>
/// 新增后返回的任务id
/// </summary>
public long id { get; set; }
/// <summary>
/// 任务子表的id新增学习习惯全面抽查此id则为抽查工作记录id也就是SpotId
/// 也可能是0为0时说明没有子表数据以任务id为主
/// </summary>
public long SunClassTaskId { get; set; }
}
}