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