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